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

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

hide comments
2016-10-06 00:01:07
O(n^2) gives a TLE. STL deques are your friend. O(n) :)
2016-08-24 07:08:40 Sunny
true to its name!! *GREEDY*
2016-06-05 03:56:39
I wanted my 50th to be a good problem.
Ended up with this :/
2016-05-29 10:49:09
AC in 1 Go
Time 0.03 seconds
2016-02-07 11:10:46
1st Attempt AC type question ^_'
space complexity O(1)
time complexity O(n)
2015-10-08 19:21:13
Wouldn't have thought of the O(n) solution had I not read the comments...awesome problem!
2015-09-29 20:23:59 Shubham Goyal
This can be solved in O(1) space and O(n) time, think greedy ;) =>AC
2015-09-06 13:32:53 shravinson
O(n)==> 0.03 sec AC
2015-08-24 04:54:59 SangKuan
O(n),common lisp got tle,c use 0.04s
2015-07-30 09:12:41 anando_du
easy one ... use long long int
u don't even need to save input in any array ... O(n) solution ... just take input and update answer ....
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.