现在的位置: 首页 > 综合 > 正文

hdu3448 Bag Problem 背包搜索技巧

2014年11月02日 ⁄ 综合 ⁄ 共 1816字 ⁄ 字号 评论关闭

01背包的题目,但是数据比较大,所以可以用搜索来做

 

 

Bag Problem

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/131072 K (Java/Others)
Total Submission(s): 670    Accepted Submission(s): 209

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
5 100 8 8 64 17 23 91 32 17 12 5 10 3 99 99 99
 

 

Sample Output
99 0

 

抱歉!评论已关闭.