Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 10830 | Accepted: 5275 |
Description
But there is a big problem with piggy-banks. It is not possible to determine how much money is inside. So we might break the pig into pieces only to find out that there is not enough money. Clearly, we want to avoid this unpleasant situation. The only possibility is to weigh the piggy-bank and try to guess how many coins are inside. Assume that we are able to determine the weight of the pig exactly and that we know the weights of all coins of a given currency. Then there is some minimum amount of money in the piggy-bank that we can guarantee. Your task is to find out this worst case and determine the minimum amount of cash inside the piggy-bank. We need your help. No more prematurely broken pigs!
Input
Output
Sample Input
3
10 110
2
1 1
30 50
10 110
2
1 1
50 30
1 6
2
10 3
20 4
Sample Output
The minimum amount of money in the piggy-bank is 60.
The minimum amount of money in the piggy-bank is 100.
This is impossible.
Source
//176K 94MS C++ 650B
#include<iostream>
#include<string.h>
#include<algorithm>
using namespace std;
#define M -0x7fffffff
int dp[];
int p[],w[];
int main(void)
{
int cas,e,f,n;
scanf("%d",&cas);
while(cas--){
scanf("%d%d",&e,&f);
scanf("%d",&n);
for(int i=;i<n;i++){
scanf("%d%d",&p[i],&w[i]);
} for(int i=;i<=f;i++){
dp[i] = M;
}
dp[] = ;
for(int i=;i<n;i++){
for(int j=w[i];j<=f-e;j++){
if(dp[j-w[i]] != M)
dp[j] = max(dp[j], dp[j-w[i]] - p[i]);
}
}
if(dp[f-e]==M){
puts("This is impossible.");
}else{
printf("The minimum amount of money in the piggy-bank is %d.\n", -dp[f-e]);
}
}
return ;
}