母函数例题.docVIP

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  4. 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  5. 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  6. 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  7. 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
母函数例题

母函数模板 Problem 求用1、2、3的邮票贴出不同数值的方案数。因邮票允许重复,故母函数为:以展开后的x4为例,其系数为4,即4拆分成1、2、3之和的拆分数为4;即 4=1+1+1+1=1+1+2=1+3=2+2 #include iostream using namespace std; const int max=10001; int c1[max]; // c1是保存int c2[max]; // c2是保存一次中间量 int main() int n; int i,j,k; while(cinn) { for(i=0;i=n;i++) { c1[i]=1; //第1个多项式的各项系数 c2[i]=0; } for(i=2;i=n;i++) //第1个多项式乘以第2、3、…多项式 { for(j=0;j=n;j++) for(k=0; k+j=n; k+=i) // k=0、i、2*i、3*i、… { c2[j+k]+=c1[j]; //合并同类项 } for(j=0;j=n;j++) { c1[j]=c2[j]; //保存中间结果 c2[j]=0; } } coutc1[n]endl; return 0; } HDOJ 1389 Square Coins Problem Description People in Silverland use square coins. Not only they have square shapes but also their values are square numbers. Coins with values of all square numbers up to 289 (=17^2), i.e., 1-credit coins, 4-credit coins, 9-credit coins, ..., and 289-credit coins, are available in Silverland. There are four combinations of coins to pay ten credits: ten 1-credit coins, one 4-credit coin and six 1-credit coins, two 4-credit coins and two 1-credit coins, and one 9-credit coin and one 1-credit coin. Your mission is to count the number of ways to pay a given amount using coins of Silverland. Input The input consists of lines each containing an integer meaning an amount to be paid, followed by a line containing a zero. You may assume that all the amounts are positive and less than 300. Output For each of the given amount, one line containing a single integer representing the number of combinations of coins should be output. No other characters should appear in the output. Sample Input 2 10 30 0 Sample Output 1 4 27 分析 G(x)=(1+x+x2+x3+x4+…)(1+x4+x8+x12+…)(1+x9+x18+x27+…)… 其中(1+x+x2+x3+x4+…)代表Value为1的硬币的零个、一个、两个、三个 (1+x4+x8+x12+…) 代表Value为4的硬币的零个、一个、两个,三个 #include iostream using namespace std; const int max=301; int c1[max],c2[max]; int main() { int n,i,j,k; while(cinn n!=0) { for(i=0;i=n;i++) { c1[i]=1;

文档评论(0)

yy556911 + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档