hdu 1114 完全背包

  1. #include <stdio.h>
  2. #include <queue>
  3. #include <string.h>
  4. #include <algorithm>
  5. #include <set>
  6. #include <string>
  7. #include <iostream>
  8. #include <vector>
  9. #include <string.h>
  10. #include <cmath>
  11. #define INF 1000000001 //最大值要合理否则会超内存的
  12. using namespace std;
  13. int f[11000];
  14. int val[1100];
  15. int weight[1100];
  16. int main()
  17. {
  18. //freopen("read.txt", "r", stdin);
  19. int T;
  20. cin >> T;
  21. while(T--)
  22. {
  23. memset(weight,0, sizeof(weight) );
  24. memset(val, 0, sizeof(val) );
  25. int a, b;
  26. cin >> a >> b;
  27. int V = b-a;
  28. int n; cin >> n;
  29. for(int i=0; i<=V; i++) //初始化,因为求得是最小
  30. f[i] = INF;
  31. f[0] = 0; //关键因为一开始DP要有个初始条件不是全部质量都为0
  32. for(int i=0; i<n; i++)
  33. cin >> val[i] >> weight[i];
  34. for(int i=0; i<n; i++) //i一直遍历到n
  35. {
  36. for(int v=weight[i]; v<=V; v++)
  37. {
  38. if(f[v] > f[v-weight[i]] + val[i])
  39. f[v] = f[v-weight[i]] + val[i];
  40. }
  41. }
  42. if(f[V]!= INF)
  43. printf("The minimum amount of money in the piggy-bank is %d. ", f[V]);
  44. else
  45. printf("This is impossible. ");
  46. }
  47. return 0;
  48. }
  49. /*
  50. Problem Description
  51. 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.
  52. 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!
  53. Input
  54. The 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 various 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.
  55. Output
  56. 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.".
  57. Sample Input
  58. 3
  59. 10 110
  60. 2
  61. 1 1
  62. 30 50
  63. 10 110
  64. 2
  65. 1 1
  66. 50 30
  67. 1 6
  68. 2
  69. 10 3
  70. 20 4
  71. Sample Output
  72. The minimum amount of money in the piggy-bank is 60.
  73. The minimum amount of money in the piggy-bank is 100.
  74. This is impossible.
  75. */





附件列表

    原文地址:https://www.cnblogs.com/sober-reflection/p/431a74b7d635d8e733112c5fa9d9aaed.html