HDU1398(稍高级一些的母函数,对之前的补充)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU1398(稍高级一些的母函数,对之前的补充)相关的知识,希望对你有一定的参考价值。

 

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
 1 #include<stdio.h>
 2 int save[320],temp[320];
 3 int a[30];
 4 int main()
 5 {
 6     int n;
 7     for(int i=0; i<=20; i++)
 8         a[i]=i*i;
 9     while(~scanf("%d",&n)&&n)
10     {
11         for(int i=0; i<=n; i++)
12         {
13             save[i]=1;
14             temp[i]=0;
15         }
16         for(int i=2; a[i]<=n; i++)
17         {
18             for(int j=0; j<=n; j++)
19                 for(int k=0; k+j<=n; k+=a[i])
20                     temp[k+j]+=save[j];
21             for(int k=0; k<=n; k++)
22             {
23                 save[k]=temp[k];
24                 temp[k]=0;
25             }
26         }
27         printf("%d\n",save[n]);
28     }
29 }

 只需要进行很少的修改就可以,但开始时由于我打了个a[i]的表,而且理解有问题出现了死循环的情况,以后的博客详细说(今天已经太晚了,对我来说)

以上是关于HDU1398(稍高级一些的母函数,对之前的补充)的主要内容,如果未能解决你的问题,请参考以下文章

*HDU 1398 母函数

hdu1398 普通母函数的应用 解决多重集组合问题

hdu 1398 Square Coins(母函数)

HDU 1398 Square Coins(母函数或DP)

hdu 2069 限制个数的母函数

HDU 1284 钱币兑换问题(普通型 数量无限的母函数)