您的位置:首页 > 其它

uva 147 Dollars(完全背包)

2015-01-19 10:31 274 查看
Dollars
Time Limit: 3000MSMemory Limit: Unknown64bit IO Format: %lld & %llu
Submit StatusDescription

Dollars

New Zealand currency consists of $100, $50, $20, $10, and $5 notes and $2, $1, 50c, 20c, 10c and 5c coins. Write a program that will determine, for any given amount, in how many ways that amount may be made up. Changing the order of listing does not increase the count. Thus 20c may be made up in 4 ways: 1 20c, 2 10c, 10c+2 5c, and 4 5c.

Input

Input will consist of a series of real numbers no greater than $300.00 each on a separate line. Each amount will be valid, that is will be a multiple of 5c. The file will be terminated by a line containing zero (0.00).

Output

Output will consist of a line for each of the amounts in the input, each line consisting of the amount of money (with two decimal places and right justified in a field of width 6), followed by the number of ways in which that amount may be made up, right justified in a field of width 17.

Sample input

0.20
2.00
0.00

Sample output

0.20                4
  2.00              293
#include <iostream>#include <cstdio>using namespace std;long long int a[6010];int main(){    int b[]={1,2,4,10,20,40,100,200,400,1000,2000};  //各类货币中5分的数量    for(int i=0;i<6001;i++)                          //每种货币由5分构成的都为1种        a[i]=1;    for(int i=1;i<11;i++)    {        for(int j=b[i];j<=6000;j++)                //枚举可使用第i类货币每一种可能的数和          {              a[j]+=a[j-b[i]];                     //前i-1类货币构成j-b[i]的总和          }    }    double n;    while(cin>>n)    {        if(n==0)            break;        int s=n*20;                                //不能为n/0.05  会有精度损失     printf("%6.2lf%17lld\n",n,a[s]);    }    return 0;}
Dollars
Time Limit: 3000MSMemory Limit: Unknown64bit IO Format: %lld & %llu
Submit StatusDescription

Dollars

New Zealand currency consists of $100, $50, $20, $10, and $5 notes and $2, $1, 50c, 20c, 10c and 5c coins. Write a program that will determine, for any given amount, in how many ways that amount may be made up. Changing the order of listing does not increase the count. Thus 20c may be made up in 4 ways: 1 20c, 2 10c, 10c+2 5c, and 4 5c.

Input

Input will consist of a series of real numbers no greater than $300.00 each on a separate line. Each amount will be valid, that is will be a multiple of 5c. The file will be terminated by a line containing zero (0.00).

Output

Output will consist of a line for each of the amounts in the input, each line consisting of the amount of money (with two decimal places and right justified in a field of width 6), followed by the number of ways in which that amount may be made up, right justified in a field of width 17.

Sample input

0.20
2.00
0.00

Sample output

0.20                4
  2.00              293
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: