码迷,mamicode.com
首页 > 其他好文 > 详细

整数划分问题 母函数

时间:2017-10-03 12:42:08      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:turn   i++   out   temp   end   div   logs   pre   ace   

 母函数求组合

#include <iostream>

using namespace std;

int main()
{
    int num[125],temp[125];
    int i,j,k;
    for(i=0;i<=124;i++)
    {
        num[i]=1;
        temp[i]=0;
    }
    for(i=2;i<=120;i++)
    {
        for(j=0;j<=120;j++)
        {
            for(k=0;(k+j)<=120;k+=i)
            {
                temp[k+j]+=num[j];
            }
        }
        for(k=0;k<=120;k++)
        {
            num[k]=temp[k];
            temp[k]=0;
        }
    }
    int n;
    while(cin>>n)
    {
        cout<<num[n]<<endl;
    }
    return 0;
}

 

整数划分问题 母函数

标签:turn   i++   out   temp   end   div   logs   pre   ace   

原文地址:http://www.cnblogs.com/LukeStepByStep/p/7623487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!