#Lutece0482. Charitable Exchange

Charitable Exchange

Migrated from Lutece 482 Charitable Exchange

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

Have you ever heard a star charity show called Charitable Exchange? In this show, a famous star starts with a small item which values 11 yuan. Then, through the efforts of repeatedly exchanges which continuously increase the value of item in hand, he (she) finally brings back a valuable item and donates it to the needy.

In each exchange, one can exchange for an item of Vi yuan if he (she) has an item values more than or equal to RiR_i yuan, with a time cost of TiT_i minutes.

Now, you task is help the star to exchange for an item which values more than or equal to MM yuan with the minimum time.

Input

The first line of the input is TT (no more than 2020), which stands for the number of test cases you need to solve.

For each case, two integers NN, MM (1N1051 \leq N \leq 10^5, 1M1091 \leq M \leq 10^9) in the first line indicates the number of available exchanges and the expected value of final item. Then NN lines follow, each line describes an exchange with 33 integers ViV_i, RiR_i, TiT_i (1RiVi1091 \leq R_i \leq V_i \leq 10^9, 1Ti1091 \leq T_i \leq 10^9).

Output

For every test case, you should output Case #k: first, where kk indicates the case number and counts from 11. Then output the minimum time. Output 1-1 if no solution can be found.

Samples

3
3 10
5 1 3
8 2 5
10 9 2
4 5
2 1 1
3 2 1
4 3 1
8 4 1
5 9
5 1 1
10 4 10
8 1 10
11 6 1
7 3 8
Case #1: -1
Case #2: 4
Case #3: 10

Resources

Sichuan State Programming Contest 2011