UVa 10130 SuperSale (0-1背包)2014-10-02 csdn博客 synapse7
10130 - SuperSale
Time limit: 3.000 secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1071There is a SuperSale in a SuperHiperMarket. Every person can take only one object of each kind, i.e. one TV, one carrot, but for extra low price. We are going with a whole family to that SuperHiperMarket. Every person can take as many objects, as he/she can carry out from the SuperSale. We have given list of objects with prices and their weight. We also know, what is the maximum weight that every person can stand. What is the maximal value of objects we can buy at SuperSale?
Input Specification
The input consists of T test cases. The number of them (1<=T<=1000) is given on the first line of the input file.Each test case begins with a line containing a single integer number N that indicates the number of objects (1 <= N <= 1000). Then follows Nlines, each containing two integers: P and W. The first integer (1<=P<=100) corresponds to the price of object. The second integer (1<=W<=30) corresponds to the weight of object. Next line contains one integer (1<=G<=100) it’s the number of people in our group. Next G lines contains maximal weight (1<=MW<=30) that can stand this i-th person from our family (1<=i<=G).
Output Specification
本文URL地址:http://www.bianceng.cn/Programming/sjjg/201410/45377.htmFor every test case your program has to determine one integer. Print out the maximal value of goods which we can buy with that family.
Sample Input
2372 1744 2331 24126664 2685 2252 499 1839 1354 9423202026
Output for the Sample Input
72514水水。完整代码:
/*0.072s*/#include<cstdio>#include<cstring>#include<algorithm>using namespace std;int p[1005], w[1005], dp[35];int main(){int t, n, i, j, g, sum, maxw;scanf("%d", &t);while (t--){scanf("%d", &n);for (i = 0; i < n; ++i)scanf("%d%d", &p[i], &w[i]);scanf("%d", &g);sum = 0;while (g--){memset(dp, 0, sizeof(dp));scanf("%d", &maxw);for (i = 0; i < n; ++i)for (j = maxw; j >= w[i]; --j)dp[j] = max(dp[j], dp[j - w[i]] + p[i]);sum += dp[maxw];}printf("%d
", sum);}return 0;}