24h購物| | PChome| 登入
2012-02-27 09:05:12| 人氣1,725| 回應0 | 上一篇 | 下一篇

[UVA] 10130 - SuperSale

推薦 0 收藏 0 轉貼0 訂閱站台

SuperSale

There 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 N lines, 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

For 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

2

3

72 17

44 23

31 24

1

26

6

64 26

85 22

52 4

99 18

39 13

54 9

4

23

20

20

26

 

Output for the Sample Input

72

514



做法 : DP背包問題

#include <stdio.h>

int main() {
    int T, i, j;
    scanf("%d", &T);
    while(T--) {
        int N, P, W, G, MW, Ans = 0;
        int DP[31] = {};
        scanf("%d", &N);
        for(i = 0; i < N; i++) {
            scanf("%d %d", &P, &W);
            for(j = 30; j >= W; j--)
                if(DP[j] < DP[j-W]+P)
                    DP[j] = DP[j-W]+P;
        }
        scanf("%d", &G);
        while(G--) {
            scanf("%d", &MW);
            Ans += DP[MW];
        }
        printf("%d\n", Ans);
    }
    return 0;
}

台長: Morris
人氣(1,725) | 回應(0)| 推薦 (0)| 收藏 (0)| 轉寄
全站分類: 不分類 | 個人分類: UVA |
此分類下一篇:[UVA] 10664 - Luggage
此分類上一篇:[UVA] 10074 - Take the Land

是 (若未登入"個人新聞台帳號"則看不到回覆唷!)
* 請輸入識別碼:
請輸入圖片中算式的結果(可能為0) 
(有*為必填)
TOP
詳全文