Submit | All submissions | Best solutions | Back to list |
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
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 |
hide comments
|
||||||||||||||
2013-06-17 16:25:38 Andy
fake constraint, result can go past 32 bit integer |
||||||||||||||
2013-06-14 10:43:36 Shubham Gupta
ac :) |
||||||||||||||
2013-06-05 06:03:57 Vipul Pandey
a nice question to learn DP for beginners. Also my first DP!!! |
||||||||||||||
2013-06-04 15:34:38 Akash
why does my code gives TLE even when i have done it in O(n) time ? Re: got it..was just taking wrong constraint in array size..accepted after 2 TLE Last edit: 2013-06-04 15:37:07 |
||||||||||||||
2013-06-03 09:36:27 Akb
wrong constraints given in the problem....use long long to get AC.... int gives WA... |
||||||||||||||
2013-06-01 17:26:20 me codesta a.k.a w@s!m
WA ????? help me.. all test cases are correct |
||||||||||||||
2013-05-31 16:15:11 Subhajit Ray
yeah int does overflow. wrong problem desc. |
||||||||||||||
2013-05-29 05:08:05 (^_^)
O(n) solution :D |
||||||||||||||
2013-05-29 00:55:24 Haijun Deng
For those who got WA, please verify your program with the following cases: Input: 6 5 1 2 3 4 5 1 10 3 2 4 3 0 9 1 3 5 9 7 10 1 10 100 4 4 3 2 1 Output: Case 1: 9 Case 2: 10 Case 3: 5 Case 4: 0 Case 5: 122 Case 6: 6 |