首页 > 代码库 > HDU 1028 Ignatius and the Princess III 母函数
HDU 1028 Ignatius and the Princess III 母函数
其实这题是水题,DP随便搞一下就能求,但是第一次写母函数,所以找了道水题做好理解些~_~
#include <cstdio>#include <cstring>#include <cmath>#include <algorithm>#include <climits>#include <string>#include <iostream>#include <map>#include <cstdlib>#include <list>#include <set>#include <queue>#include <stack>using namespace std;typedef long long LL;const int maxn = 125;int c1[maxn],c2[maxn];int main() { int n; while(scanf("%d",&n) == 1) { //用第一个多项式初始化 for(int i = 0;i <= n;i++) { c1[i] = 1; c2[i] = 0; } //第i个多项式 for(int i = 2;i <= n;i++) { //第i个多项式中的第j项 for(int j = 0;j <= n;j += i) { //依次累加 for(int k = 0;k + j <= n;k++) { c2[k + j] += c1[k]; } } memcpy(c1,c2,sizeof(c1)); memset(c2,0,sizeof(c2)); } printf("%d\n",c1[n]); } return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。