HDU1114_Piggy-Bank (Backpack/full backpack)

Source: Internet
Author: User

Solution report

Question Portal

Question:

Calculate the minimum value of the deposit tank.

Ideas:

Full backpack basis. The initial DP is the largest, and DP [0] = 0 indicates that the empty piggy bank has a value of 0;

The state transition equation is DP [J] = min (DP [J], DP [J-W [I] + C [I]).

#include <iostream>#include <cstring>#include <cstdio>#define inf 99999999using namespace std;int main(){    int t,i,j,e,f,n,v,w[550],p[550],dp[10010];    scanf("%d",&t);    while(t--) {        scanf("%d%d",&e,&f);        v=f-e;        scanf("%d",&n);        for(i=1; i<=n; i++) {            scanf("%d%d",&p[i],&w[i]);        }        for(i=1; i<=v; i++)            dp[i]=inf;        for(i=1; i<=n; i++) {            for(j=w[i]; j<=v; j++) {                dp[j]=min(dp[j],dp[j-w[i]]+p[i]);            }        }        if(dp[v]<inf)            printf("The minimum amount of money in the piggy-bank is %d.\n",dp[v]);        else printf("This is impossible.\n");    }    return 0;}

Piggy-bank Time Limit: 2000/1000 MS (Java/others) memory limit: 65536/32768 K (Java/Others)
Total submission (s): 11691 accepted submission (s): 5892


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 Input
310 11021 130 5010 11021 150 301 6210 320 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.
 

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.