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]的表,而且理解有问题出现了死循环的情况,以后的博客详细说(今天已经太晚了,对我来说)

posted @ 2016-02-21 22:34  Alan2  阅读(184)  评论(0编辑  收藏  举报