hdu 1028 Ignatius and the Princess III生成函数

Posted lokiii

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1028 Ignatius and the Princess III生成函数相关的知识,希望对你有一定的参考价值。

老是想着化简,实际上O(n^3)就行了……
写成生成函数是( prod_{i=1}^{n}(1+x^i+2^{2i}+...+x^{ left lfloor frac{n}{i} ight floor }) ),暴力乘即可

#include<iostream>
#include<cstdio>
using namespace std;
const int N=125;
int n,a[N],b[N];
int main()
{
    while(~scanf("%d",&n))
    {
        for(int i=0;i<=n;i++)
            a[i]=1,b[i]=0;
        for(int i=2;i<=n;i++)
        {
            for(int j=0;j<=n;j++)
                for(int k=0;k<=n;k+=i)
                    b[j+k]+=a[j];
            for(int j=0;j<=n;j++)
                a[j]=b[j],b[j]=0;
        }
        printf("%d
",a[n]);
    }
    return 0;
}

以上是关于hdu 1028 Ignatius and the Princess III生成函数的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1028 Ignatius and the Princess III (动态规划)

hdu 1028 Ignatius and the Princess III

HDU 1028: Ignatius and the Princess III

hdu 1028 Ignatius and the Princess III 母函数

HDU1028 Ignatius and the Princess III 母函数

HDU 1028 Ignatius and the Princess III(生成函数)