码迷,mamicode.com
首页 > 其他好文 > 详细

UVa 674 Coin Change(完全背包)

时间:2017-02-08 23:09:39      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:string   完全   计算   hang   main   logs   tps   str   uva   

https://vjudge.net/problem/UVA-674

题意:

计算兑换零钱的方法共有几种。

 

思路:

完全背包基础题。

 1 #include<iostream> 
 2 #include<string>
 3 #include<cstring>
 4 #include<algorithm>
 5 using namespace std;
 6 
 7 int d[7500];
 8 int a[5] = { 1, 5, 10, 25, 50 };
 9 
10 int main()
11 {
12     //freopen("D:\\txt.txt", "r", stdin);
13     int s;
14     while (cin >> s)
15     {
16         memset(d, 0, sizeof(d));
17         d[0] = 1;
18         for (int i = 0; i < 5; i++)
19         {
20             for (int j = a[i]; j <= s; j++)
21                 d[j] += d[j - a[i]];
22         }
23         cout << d[s] << endl;
24     }
25     return 0;
26 }

 

UVa 674 Coin Change(完全背包)

标签:string   完全   计算   hang   main   logs   tps   str   uva   

原文地址:http://www.cnblogs.com/zyb993963526/p/6380127.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!