Submit | All submissions | Best solutions | Back to list |
RPLC - Coke madness |
David likes coke, lets say he likes it a lot... One day he was walking by a narrow street when he sees a lot of bottles of cokes, from different brands, he wants to drink it all, but he noticed that one brand gives him power, the other brand weaken him, now, he can wait and regain more energy, but he don't want to do that, he will wait at the beginning and, when he has the sufficient energy he will drink all the cokes in the street.
Please, help him find when he will be in the perfect moment to drink all the cokes.
Input
Will start with an integer T denoting the number of test cases, then, T lines will follow, for each test case, there will be an integer N, then, in the next line will be N integers, this will be the number of cokes, and the values of the cokes in the floor (the positive one gives energy, the negative ones will take his energy).
Output
Each test case will output the string “Scenario #i: “ where i is the number of test case analyzed, followed by the minimum energy required by David to pass the street.
Example
Input: 2 5 4 -10 4 4 4 5 1 2 3 4 5 Output: Scenario #1: 7 Scenario #2: 1
“The life of David should never reach 0 or less”
Constraints
1 <= N <= 1000000
-10000000 <= Ni <= 10000000
Added by: | david_8k |
Date: | 2012-04-12 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | Own Problem used for the RPL contest |
hide comments
|
||||||||
2016-03-19 20:29:15
be careful for spaces dont forget to add a space between #n: and the answer cost me one wrong answer :-( |
||||||||
2016-03-13 21:34:21
extremely easy :) tutorials |
||||||||
2016-01-20 07:23:38
Had a runtime error twice, removed Console.ReadLine() after a test case, AC. It looks like there are actually no blank lines between test cases. In general, it is an interesting problem, but with awful description and input: "then, T lines will follow, for each test case, there will be an integer N, then, in the next line will be N integers, this will be the number of cokes". Absolutely wrong and unclear. Last edit: 2016-01-20 07:24:31 |
||||||||
2015-09-22 21:00:14 jarvis
cin/cout inplace of printf/scanf be careful with $#: space $ 3wa! now AC |
||||||||
2015-08-19 13:43:29 Shivam Singh
If you are calculating the total energy at every step, it will cross the int limit... |
||||||||
2015-08-04 17:48:22 Babu
Be careful with spaces in the output.These things mean nothing but costed 2 WA -_- |
||||||||
2015-07-20 22:00:22 Varun Gambhir
Use long long if using C/C++ |
||||||||
2015-06-21 15:49:40
Easy if got the logic...50th AC..:-) |
||||||||
2015-05-27 14:59:53 Rishabh Joshi
c gets WA c++ AC. Problem in the spaces in input and output, so scanfprintf after being replaced by cin cout worked. |
||||||||
2015-04-01 07:57:56 TUSHAR SINGHAL
space between scenario #$: $ and answer costed me 1 wa ....be careful :-) |