#Lutece0413. Fibonacci Knapsack
Fibonacci Knapsack
Migrated from Lutece 413 Fibonacci Knapsack
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
We have items, each with a specified weight and cost, and a bag that can carry a specified maximum weight. We want to place a subset of these items into the bag such that the total cost is maximized.
In this problem, the weights of the items are all Fibonacci numbers.
The first two Fibonacci numbers are and . Each successive number is obtained by adding together the two previous numbers. Thus, the first Fibonacci numbers are
Input
The first line contains an integer indicating the number of test cases.()
The first line of each test case contains two integers and (), the number of items and the maximum weight that the bag can carry. Each of the following lines contains two integers and (, wi will be a Fibonacci number), indicating the weight and cost of each item.
Output
You should output one line for each test case, containing the case number followed by the maximum total cost of the subset of items that can fit into the bag.
Samples
2
3 15
5 18
2 10
13 24
1 2
3 10
Case 1: 34
Case 2: 0
Resources
modified from Topcoder SRM 352