hdu 2844 多重背包coins

http://acm.hdu.edu.cn/showproblem.php?pid=2844

 

 题意:

有n个硬币,知道其价值A1。。。。。An。数量C1。。。Cn。问在1到m价值之间,最多能组成多少种价值。

思路:

dp[i]表示i价值能够组成的最大种数。

 

Coins

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 8909    Accepted Submission(s): 3580


Problem Description
Whuacmers use coins.They have coins of value A1,A2,A3...An Silverland dollar. One day Hibix opened purse and found there were some coins. He decided to buy a very nice watch in a nearby shop. He wanted to pay the exact price(without change) and he known the price would not more than m.But he didn't know the exact price of the watch.

You are to write a program which reads n,m,A1,A2,A3...An and C1,C2,C3...Cn corresponding to the number of Tony's coins of value A1,A2,A3...An then calculate how many prices(form 1 to m) Tony can pay use these coins.
 

Input
The input contains several test cases. The first line of each test case contains two integers n(1 ≤ n ≤ 100),m(m ≤ 100000).The second line contains 2n integers, denoting A1,A2,A3...An,C1,C2,C3...Cn (1 ≤ Ai ≤ 100000,1 ≤ Ci ≤ 1000). The last test case is followed by two zeros.
 

Output
For each test case output the answer on a single line.
 

Sample Input
3 10 1 2 4 2 1 1 2 5 1 4 2 1 0 0
 

Sample Output
8 4
 

Source
 

Recommend
gaojie   |   We have carefully selected several similar problems for you:  2159 2602 1203 1171 2845 
 

Statistic | Submit | Discuss | Note
 1 /*
 2 P03: 多重背包问题
 3 题目
 4 有N种物品和一个容量为V的背包。第i种物品最多有n[i]件可用,每件费用是c[i],价值是w[i]。
 5 求解将哪些物品装入背包可使这些物品的费用
 6 总和不超过背包容量,且价值总和最大。
 7 基本算法
 8 这题目和完全背包问题很类似。基本的方程只需将完全背包问题的方程略微一改即可,因为对
 9 于第i种物品有n[i]+1种策略:取0件,
10 取1件……取n[i]件。令f[i][v]表示前i种物品恰放入一个容量为v的背包的最大权值,则有状态
11 转移方程:
12 f[i][v]=max{f[i-1][v-k*c[i]]+k*w[i]|0<=k<=n[i]}
13 复杂度是O(V*Σn[i])。
14 */
15 #include <string.h>
16 #include <stdio.h>
17 int main()
18 {
19     int n,m,A[101],C[101],f[100001],num,count,i,j,k;
20     while(scanf("%d%d",&n,&m),n,m)
21     {
22         for( i = 0; i < n ; i++)
23         scanf("%d",&A[i]);
24         for( i = 0; i < n ; i++)
25         scanf("%d",&C[i]);
26         memset(f,0,sizeof(f));//标记如果能组成m这种面值的f[m]为1,否则为0。
27         f[0] = 1;
28         for( i = 0; i < n ; i++)
29         for( j = 0;j < A[i];j++)//针对每种硬币,只能组成由面值为0--A[i]-1与K*A[i]的加和组成。1<=k<=c[i]
30         {
31             count = C[i]; //记录使用的次数
32             for( k = j+A[i] ; k <= m;k+=A[i])//
33             if(f[k]==1)count = C[i];//如果这种面值的价格不用A[i]这种硬币即可组成,那么这种硬币的数量可以恢复原始数量即一次也没用过
34             else if(count>0&&f[k-A[i]]==1)
35             {
36                 f[k] = 1;
37                 count--;
38             }
39         }
40         num = 0;//记录数目,得到可以组成的金额数目。
41         for( i = 1; i <= m; i++)
42         if(f[i]==1)num++;
43         printf("%d\n",num);
44     }
45     return 0;
46 }

 

posted @ 2015-05-27 09:49  zach96  阅读(262)  评论(0编辑  收藏  举报