GERGOVIA - Wine trading in Gergovia
Gergovia consists of one street, and every inhabitant of the city is a wine salesman. Everyone buys wine from other inhabitants of the city. Every day each inhabitant decides how much wine he wants to buy or sell. Interestingly, demand and supply is always the same, so that each inhabitant gets what he wants.
There is one problem, however: Transporting wine from one house to another results in work. Since all wines are equally good, the inhabitants of Gergovia don't care which persons they are doing trade with, they are only interested in selling or buying a specific amount of wine.
In this problem you are asked to reconstruct the trading during one day in Gergovia. For simplicity we will assume that the houses are built along a straight line with equal distance between adjacent houses. Transporting one bottle of wine from one house to an adjacent house results in one unit of work.
Input
The input consists of several test cases.
Each test case starts with the number of inhabitants N (2 ≤ N ≤ 100000).
The following line contains n integers ai (-1000 ≤ ai ≤ 1000).
If ai ≥ 0, it means that the inhabitant living in the ith house wants to buy ai bottles of wine. If ai < 0, he wants to sell -ai bottles of wine.
You may assume that the numbers ai sum up to 0.
The last test case is followed by a line containing 0.
Output
For each test case print the minimum amount of work units needed so that every inhabitant has his demand fulfilled.
Example
Input:
5
5 -4 1 -3 1
6
-1000 -1000 -1000 1000 1000 1000
0
Output:
9
9000
hide comments
Dikshant Gupta:
2015-07-28 13:25:24
@monkz
|
|
monkz:
2015-07-13 09:32:35
is there an O(n) solution? |
|
Sumit Paroothi:
2015-07-05 04:22:48
easy one....don't think too much! |
|
Anmol Varshney:
2015-07-01 15:28:30
My 50th :D |
|
newbie:
2015-05-30 12:06:07
Think simple!!! |
|
:.Mohib.::
2015-05-14 03:43:25
Awsm prblm..... => AC |
|
Mhmood Aslan:
2015-04-19 22:41:11
@Monkey D:
|
|
Monkey D:
2015-02-20 16:51:47
ignoring use of long long int cost me 3WA good problem :) |
Added by: | HNUE |
Date: | 2009-10-30 |
Time limit: | 0.5s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 NODEJS OBJC PERL6 SQLITE VB.NET |
Resource: | UVA |