HDU 1028 Ignatius and the Princess III
HDU 1028 Ignatius and the Princess III
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1028
题意:将一个整数拆成若干整数和 求分解的方案有几种 其中 7=5+1+1与7=1+5+1视为一种
常规思路是用母函数写 算是母函数入门题
母函数原型:(x ^ 0 + x ^ 1 + x ^ 2 + … + x^n) * (x ^ 0 + x ^ 2 + x ^ 4 + …+ x ^ n)…(x ^ 0 + x ^ n)
第一个括号里面表示1的个数 第二个括号表示2的个数 以此类推
这里举一个简单的例子方便大家理解普通母函数 你有3枚硬币 分别是 1元,2元 和3元 问得到 5元 有几种方案。 最暴力的方法,全部枚举,那么对于1元,你有取或者不取两种方案,2元也是,取或者不取,3元也是。这里就设x^k,k表示面额,那么对于1元,取就是x ^ 1,不取就是x ^ 0,既(x ^0 +x ^1),那么最后可以得到(x ^0+x ^1)(x ^0+x ^2)(x ^0+x ^3) = x ^0+x ^1+x ^2+2*x ^3+x ^4+x ^5+x ^6。每项前面的系数表示得到k元有几种方案,即用多项式相乘代替暴力枚举。
那么对于这一题,只要枚举1的个数到n的个数,最后求出x ^n的系数即可。
话不多说 上代码。
#include<stdio.h>
int main()
{
int t,dp[130],ans[130];
while(scanf("%d",&t)!=EOF)
{
for(int i=0;i<=t;i++)
{
dp[i]=1;
ans[i]=0;
}
for(int i=2;i<=t;i++)
{
for(int k=0;k<=t;k++)
{
for(int l=0;l+k<=t;l+=i)
ans[k+l]+=dp[k];
}
for(int j=0;j<=t;j++)
{
dp[j]=ans[j];
ans[j]=0;
}
}
printf("%d\n",dp[t]);
}
return 0;
}
另一种思路:DP 这题其实可以看成完全背包问题,对于无限量的1,2,3,4…问存满容量为n的背包,有几种方案。 代码不贴了,和母函数的几乎一样。可以试着拿完全背包的思维去看上面的代码,先设dp[0]为1,dp[t]表示到达t的方案数,dp[i][j] = dp[i-1][j-w[i]]+dp[i][j]。
上一篇: Java.成绩排序---(查找和排序)
下一篇: 子集生成
推荐阅读
-
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(生成函数)
-
HDU1027-Ignatius and the Princess II(全排列问题next_permutation函数的使用)
-
HDU 1027 Ignatius and the Princess II[DFS/全排列函数next_permutation]
-
HDU 1027 Ignatius and the Princess II(全排列)
-
HDU 1027 Ignatius and the Princess II(全排列next_permutation函数)
-
【排列】HDU1027 Ignatius and the Princess II
-
HDU 1027 Ignatius and the Princess II(全排列问题)