#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 NN 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 11 and 22. Each successive number is obtained by adding together the two previous numbers. Thus, the first Fibonacci numbers are 1,2,3,5,8,13,1, 2, 3, 5, 8, 13, \cdots

Input

The first line contains an integer TT indicating the number of test cases.(1T201\leq T\leq 20)

The first line of each test case contains two integers NN and WW (1N501\leq N\leq 50), the number of items and the maximum weight that the bag can carry. Each of the following NN lines contains two integers wiw_i and cic_i(1wi,ci10161\leq w_i,c_i\leq 10^{16}, 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