HDU 1114 Piggy-Bank (full backpack)

Source: Internet
Author: User
Piggy-Bank

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission (s): 5726 Accepted Submission (s): 2878

Problem DescriptionBefore 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 shoshould 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!

 

 

InputThe input consists of T test cases. the number of them (T) is given on the first line of the input file. each test case begins with a line containing two integers E and F. they indicate the weight of an empty pig and of the pig filled with coins. both weights are given in grams. no pig will weigh more than 10 kg, that means 1 <= E <= F <= 10000. on the second line of each test case, there is an integer number N (1 <= N <= 500) that gives the number of varous coins used in the given currency. following this are exactly N lines, each specifying one coin type. these lines contain two integers each, Pand W (1 <= P <= 50000, 1 <= W <= 10000 ). P is the value of the coin in monetary units, W is it's weight in grams.

 

OutputPrint 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 Input3 10 110 2 1 1 30 50 10 110 2 1 1 50 30 1 6 2 10 3 20 4

 

Sample OutputThe minimum amount of money in the piggy-bank is 60. The minimum amount of money in the piggy-bank is 100. This is impossible.

 

SourceCentral Europe 1999

 

RecommendEddy Question: The quality of a coin storage can and a coin storage tank is known to be empty. Then the quality and value of n coins were given. Ask how much money the piggy bank has at least. Solution: complete backpack. Note that it should be initialized to INF, and it should be filled. If the result is INF, output This is impossible.
#include<stdio.h>#include<string.h>#include<algorithm>#include<iostream>using namespace std;const int MAXN=550;const int INF=0x3f3f3f3f;int value[MAXN];int weight[MAXN];int dp[10010];int nKind,nValue;int main(){    int T;    int E,F;    scanf("%d",&T);    while(T--)    {        scanf("%d%d",&E,&F);        nValue=F-E;        scanf("%d",&nKind);        for(int i=0;i<nKind;i++)           scanf("%d%d",&weight[i],&value[i]);        for(int i=0;i<=nValue;i++)dp[i]=INF;        dp[0]=0;        for(int i=0;i<nKind;i++)          for(int j=value[i];j<=nValue;j++)            if(dp[j-value[i]]<INF)              dp[j]=min(dp[j],dp[j-value[i]]+weight[i]);        if(dp[nValue]>=INF)printf("This is impossible.\n");        else printf("The minimum amount of money in the piggy-bank is %d.\n",dp[nValue]);    }    return 0;}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.