|
||||||||||
Bag ProblemTime Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/131072 K (Java/Others)Total Submission(s): 2818 Accepted Submission(s): 721 Problem Description 0/1 bag problem should sound familiar to everybody. Every earth man knows it well. Here is a mutant: given the capacity of a bag, that is to say, the number of goods the bag can carry (has nothing to do with the volume of the goods), and the weight it can carry. Given the weight of all goods, write a program that can output, under the limit in the above statements, the highest weight. Input Input will consist of multiple test cases The first line will contain two integers n (n<=40) and m, indicating the number of goods and the weight it can carry. Then follows a number k, indicating the number of goods, k <=40. Then k line follows, indicating the weight of each goods The parameters that haven¡¯t been mentioned specifically fall into the range of 1 to 1000000000. Output For each test case, you should output a single number indicating the highest weight that can be put in the bag. Sample Input
Sample Output
Source | ||||||||||
|