Problem C
Maximum Loot
A burglar wants to maximize the value of his loot given that he has a limited carrying capacity. Which items should he choose?
More precisely, there is for every item
Furthermore, if the burglar breaks into a sweet shop, there
will be a lot of items, but they won’t be very valuable. On the
other hand, an art exhibition tends to have few, but very
valuable objects. Careful field research has shown that the
trade-off between total value
Input
The first line contains an integer
For the purposes of this problem, all input parameters are
positive integers and the sum of all values is at most
Output
For each test case, print the maximum value the loot can have given the cost constraint. Each test case should produce a single line of output.
Explanation of Sample Data
In the first case, pick items number 2, 3, and 4 for a total weight of 5, and in the second case pick items number 2, 4, 9 for a total weight of 5.
Sample Input 1 | Sample Output 1 |
---|---|
2 4 6 5 2 4 1 6 2 1 2 10 5 1 3 2 3 1 1 3 2 4 2 1 2 2 1 1 2 3 1 2 2 |
7 10 |