#SDNU1539. Do you like Hot Dog ?
Do you like Hot Dog ?
Description
Hot dog is a very delicious food,and Goc like it very much. The picture below shows how much does Goc like it. hhhhh...
Given a set of hot dog, each with a price and a happy value , determine a way to choose the items into a knapsack so that the total price is less than or equal to a given limit and the total happy value is as large as possible. Find the maximum total happy value. (Note that each item can be only chosen once).
Format
Input
The first line contains the integer indicating to the number of test cases.
For each test case, the first line contains the integers and .
Following lines provide the information of each item.
The line contains the price and the happy value of the item respectively.
All the inputs are integers.
Output
For each test case, output the maximum value.
Samples
1
5 15
12 4
2 2
1 1
4 10
1 2
15
Hint