http://acm.hdu.edu.cn/showproblem.php?pid=2844
New~ 欢迎“热爱编程”的高考少年——报考杭州电子科技大学计算机学院 关于2015年杭电ACM暑期集训队的选拔 |
CoinsTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) 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 Sample Output 8 Source 2009 Multi-University Training Contest 3 - Host by WHU Recommend gaojie | We have carefully selected several similar problems for you: 2159 2602 1203 1171 2845 |
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 }