HDU 1114 Piggy-Bank (full backpack), hdupiggy-bank

Source: Internet
Author: User

HDU 1114 Piggy-Bank (full backpack), hdupiggy-bank

Piggy-Bank Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission (s): 14728 Accepted Submission (s): 7450

Problem 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 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.
 
SourceCentral Europe 1999

Question link: http://acm.hdu.edu.cn/showproblem.php? Pid = 1, 1114

The quality of a container is E when it is empty, F when it is full, there are n kinds of coins, each with a nominal pi, weight wi, just fill the container, calculates the minimum value of the coin's total face value.

Problem Analysis: bare full backpack, because the minimum requirement and full, during initialization dp [0] = 0, the remaining dp value is INF, backpack capacity for F-E
Dp [j] = min (dp [j], dp [j-w [I] + p [I]), dp [j] indicates the face value when the volume is j

#include <cstdio>#include <cstring>#include <algorithm>using namespace std;int const MAX = 505;int const INF = 0x3fffffff;int w[MAX], p[MAX];int dp[10005];int main(){int T, n;scanf("%d", &T);while(T--){int e, f;scanf("%d %d", &e, &f);scanf("%d", &n);for(int i = 1; i <= n; i++)scanf("%d %d", &p[i], &w[i]);for(int i = 1; i <= f - e; i++)dp[i] = INF;dp[0] = 0;for(int i = 1; i <= n; i++)for(int j = w[i]; j <= f - e; j++)dp[j] = min(dp[j], dp[j - w[i]] + p[i]);if(dp[f - e] == INF)printf("This is impossible.\n");elseprintf("The minimum amount of money in the piggy-bank is %d.\n", dp[f - e]);}}


 

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.