You are playing a game with a fancy deck of cards. Each card has three bonus numbers: a card bonus
On each turn, you can choose any card from your hand and play it. If it has bonus numbers
- The card is discarded from your hand, and it can never be used again.
- You draw the first
cards from the deck into your hand. If the deck has fewer than cards in it, you draw all of them. - Your total score increases by
. - Your number of remaining turns increases by
.
If you do not have any cards in your hand at the start of a turn, then nothing happens on that turn. Your goal is to get as high a score as possible before running out of turns.
For example, suppose your hand and deck contain the following cards:
+---+---+---+ +---+---+---+
HAND: | c | s | t | DECK: | c | s | t |
+---+---+---+ +---+---+---+
Card #1: | 0 | 0 | 2 | Card #4: | 1 | 1 | 0 |
Card #2: | 0 | 5 | 0 | Card #5: | 0 | 1 | 1 |
Card #3: | 2 | 1 | 1 | Card #6: | 2 | 2 | 0 |
+---+---+---+ +---+---+---+
The following table shows how you can get a score of 8 from these cards. The first three columns show your hand, the number of turns left, and your score before playing each card, and the final column shows which card to play.
+---------+------------+-------+------+
| Hand | Turns left | Score | Play |
+---------+------------+-------+------+
| 1, 2, 3 | 1 | 0 | 1 |
| 2, 3 | 2 | 0 | 3 |
| 2, 4, 5 | 2 | 1 | 2 |
| 4, 5 | 1 | 6 | 5 |
| 4 | 1 | 7 | 4 |
| 6 | 0 | 8 | - |
+---------+------------+-------+------+
As you can see, the card bonuses and turn bonuses allow you to chain together a long sequence of cards before you have to stop.
Input Specification
The first line of the input gives the number of test cases,
Each test case begins with a single line containing
This is followed by a single line containing
Output Specification
For each test case, output one line containing Case #x: S
, where
Limits
Memory limit: 1 GB.
Small Dataset
Time limit: 30 seconds.
Large Dataset
Time limit: 60 seconds.
Sample Input
2
4
1 0 0
1 1 1
0 5 0
1 2 0
0
2
1 1 1
0 6 0
1
0 1 3
Sample Output
Case #1: 6
Case #2: 8
Comments