poj1742 Coins

Posted 王宜鸣

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj1742 Coins相关的知识,希望对你有一定的参考价值。

思路:

多重背包变形。

楼天城男人八题的第六题。

http://www.cnblogs.com/dramstadt/p/3439725.html

实现:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 using namespace std;
 5 bool ok[100005];
 6 int used[100005];
 7 int v[105];
 8 int c[105];
 9 int n,m;
10 int main()
11 {
12     while(cin >> n >> m, n + m)
13     {
14         for(int i = 0; i < n; i++)
15         {
16             scanf("%d", &v[i]);
17         }
18         for(int i = 0; i < n; i++)
19         {
20             scanf("%d", &c[i]);
21         }
22         int cnt = 0;
23         memset(ok, 0, sizeof(ok));
24         ok[0] = true;
25         for(int i = 0; i < n; i++)
26         {
27             memset(used, 0, sizeof(used));
28             for(int j = v[i]; j <= m; j++)
29             {
30                 if(!ok[j] && ok[j-v[i]] && used[j-v[i]] < c[i])
31                 {
32                     ok[j] = true;
33                     used[j] = used[j-v[i]] + 1;
34                     cnt++;
35                 }
36             }
37         }
38         cout << cnt << endl;
39     }
40     return 0;
41 }

 

以上是关于poj1742 Coins的主要内容,如果未能解决你的问题,请参考以下文章

Coins POJ - 1742

poj 1742 Coins

背包问题 POJ1742 Coins

poj 1742 Coins (动态规划,背包问题)

poj1742 Coins多重背包贪心

poj1742 Coins