首页 > 其他 > 详细

hdu 1028 Ignatius and the Princess III(用母函数解决整数分拆问题)

时间:2015-06-03 06:09:37      阅读:224      评论:0      收藏:0      [点我收藏+]

代码:

#include<cstdio>
#include<cmath>
using namespace std;

int main()
{
    int n;
    int c1[150],c2[150];
    while(scanf("%d",&n)==1)
    {
        for(int i=0;i<=n;i++)
        {
            c1[i]=1;
            c2[i]=0;
        }
        for(int i=2;i<=n;i++)
        {
            for(int j=0;j<=n;j++)
            {
                for(int k=0;k+j<=n;k+=i)
                {
                    c2[j+k]+=c1[j];
                    //c1[k+j]=c2[k+j];
                }

            }
            for(int j=0;j<=n;j++)
            {
                c1[j]=c2[j];
                c2[j]=0;
            }
        }
        printf("%d\n",c1[n]);
    }
    return 0;
}


hdu 1028 Ignatius and the Princess III(用母函数解决整数分拆问题)

原文:http://blog.csdn.net/xky1306102chenhong/article/details/46338133

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!