Description
Before ACM can do anything, a budget must be prepared and the necessary financial support obtained. The main income for this action comes from Irreversibly Bound Money (IBM). The idea behind is simple. Whenever some ACM member has any small money, he takes all the coins and throws them into a piggy-bank. You know that this process is irreversible, the coins cannot be removed without breaking the pig. After a sufficiently long time, there should be enough cash in the piggy-bank to pay everything that needs to be paid.
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!
Output
Print exactly one line of output for each test case. The line must contain the sentence "The minimum amount of money in the piggy-bank is X." where X is the minimum amount of money that can be achieved using coins with the given total weight. If the weight cannot be reached exactly, print a line "This is impossible.".
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.
题意:给定一个重为U的存钱罐,然后又给出存钱后的重量V;那么可以得到
钱重 W = V - U ;完全背包的区别是物品不限个数。
但是针对于一类还是优先选择满足条件的;本题额外的是要计算一个比较大的 数,当没有填满就impossible;
AC代码:
#include <bits/stdc++.h>
#define MAX 99999999
int dp[50000] , val[50000] , wei[50000];
using namespace std ;
int main()
{
int t , u , v ;
cin>>t;
while(t--)
{
memset(dp,0,sizeof(dp));
memset(val,0,sizeof(val));
memset(wei,0,sizeof(wei));
cin>>u>>v;
int w = v - u ;
int n ;
cin>>n;
for(int i = 1 ; i<=n ; i++)
{
cin>>val[i] >> wei[i];
}
for(int i = 1 ; i<=w ; i++)
{
dp[i] = MAX;
}
for(int i =1 ; i<=n ; i++)
{
for(int j = wei[i] ; j<=w ; j++)
{
dp[j] = min(dp[j], dp[j-wei[i]]+val[i]);
}
}
if(dp[w]==MAX)
{
printf("This is impossible.\n");
}
else
{
printf("The minimum amount of money in the piggy-bank is %d.\n",dp[w]);
}
}
return 0 ;
}