Coins
Time Limit: / MS (Java/Others) Memory Limit: / K (Java/Others)
Total Submission(s): Accepted Submission(s):
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( ≤ n ≤ ),m(m ≤ ).The second line contains 2n integers, denoting A1,A2,A3...An,C1,C2,C3...Cn ( ≤ Ai ≤ , ≤ Ci ≤ ). The last test case is followed by two zeros.
Output
For each test case output the answer on a single line.
Sample Input
Sample Output
Source
Multi-University Training Contest - Host by WHU
// 多重背包 二进制优化
#include <iostream>
#include <algorithm>
#include <queue>
#include <math.h>
#include <stdio.h>
#include <string.h>
using namespace std;
int M[];
int main()
{
int A[],C[];
int n,m;
int i,j,k;
while(scanf("%d %d",&n,&m),n|m){
for(i=;i<=n;i++)
scanf("%d",&A[i]);
for(i=;i<=n;i++)
scanf("%d",&C[i]);
M[]=;
for(i=;i<=m;i++)
M[i]=;
int temp;
for(i=;i<=n;i++){
k=;
while(k<=C[i]){
C[i]-=k;
temp=k*A[i];
for(j=m;j>=temp;j--)
if(M[j-temp])
M[j]=;
k=k<<;
}
if(C[i]>) {k=C[i];
temp=k*A[i];
for(j=m;j>=temp;j--)
if(M[j-temp])
M[j]=;
}
}
k=;
for(i=;i<=m;i++)
if(M[i])k++;
printf("%d\n",k);
}
return;
}