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
aryan29:
2019-06-06 12:49:24
Very good my first DP problem |
|
youknowwho37:
2019-05-26 19:04:13
AC in one go! first dp problem in spoj!!
|
|
fahim_1:
2019-05-20 22:34:53
AC.. Just handle the base case..You can get AC.. it's like 0-1 knapsack DP
|
|
medha_08:
2019-05-01 23:53:35
AC !! |
|
rayten:
2019-05-01 23:53:11
AC!
|
|
aj_254:
2019-04-15 20:06:38
https://www.geeksforgeeks.org/find-maximum-possible-stolen-value-houses/
|
|
gs959_me:
2019-03-17 18:43:10
AC in one go !! |
|
akbar_1214:
2019-02-11 13:50:02
Got wa just because of using int instead of long long
|
|
anant6025:
2019-02-06 23:50:24
Dont go deep into loops, try to find a recursive solution, once you are done with that than apply dp and the job is done!
|
|
shivam284:
2019-01-22 07:11:30
AC.Good problem with better test cases. |
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 |