FARIDA - Princess Farida


Once upon time there was a cute princess called Farida living in a castle with her father, mother and uncle. On the way to the castle there lived many monsters. Each one of them had some gold coins. Although they are monsters they will not hurt. Instead they will give you the gold coins, but if and only if you didn't take any coins from the monster directly before the current one. To marry princess Farida you have to pass all the monsters and collect as many coins as possible. Given the number of gold coins each monster has, calculate the maximum number of coins you can collect on your way to the castle.

Input

The first line of input contains the number of test cases. Each test case starts with a number N, the number of monsters, 0 <= N <= 10^4. The next line will have N numbers, number of coins each monster has, 0 <= The number of coins with each monster <= 10^9. Monsters described in the order they are encountered on the way to the castle.

Output

For each test case print “Case C: X” without quotes. C is the case number, starting with 1. X is the maximum number of coins you can collect.

Example

Input:
2
5
1 2 3 4 5
1
10

Output:
Case 1: 9
Case 2: 10

hide comments
rehanrahi: 2017-10-08 18:25:30

guys if you dont want to use dp! then no problem this can be solved by one another method.this ques is indirectly given like this suppose you have one array and you have to find max sum such that no two elements are adjacent.hope you will get the hint

hemant1612: 2017-10-08 05:12:17

If you are using python, there may be NZEC as input array is not provided inline sometimes.

xpressrazor: 2017-10-02 18:40:25

Caused multiple WA. How stupid can I be for not seeing I had to prepend "Case ".

nikhil_jain: 2017-09-24 21:37:10

guys the number of coins i.e. 10^9 for some reason doesn't fit in the range of integer according to the question, which I don't know why but if you are facing wrong answer even after checking all the test cases then try changing the data type from int to long, it will be accepted then.

horizon121: 2017-08-29 15:28:09

Guyz write the "Case " number got me 1 WA!!Easy dp!!!

kxingh: 2017-08-19 12:47:41

cheq for monster=0

nikhil2504: 2017-08-01 02:23:06

Little mistake costed W.A
9
1 3 5 9 7 10 1 10 100
Consider this tc , if you get W.A.

abhi_96: 2017-07-30 08:28:02

it's capital 'C' in case.cost me 1 WA.

nietaki: 2017-07-23 18:59:46

There seem to be extra whitespace characters in the input :/

xaer0_: 2017-07-09 13:59:55

n = 0. Good catch from guys in the comments.
dp solution with array of size n.


Added by:hossamyosef
Date:2013-05-13
Time limit:1.237s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:FCIS/ASU Local Contest 2013