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
shinchan_1609: 2021-06-07 08:32:53

I solved it using stack!

nhi_batana: 2021-06-03 09:55:59

Ac in one go, use prefix sum :)

harsh_joeyit: 2021-05-13 07:44:32

Take care of the input format. Cost me 4 WA

Last edit: 2021-05-13 07:44:46
girsai: 2021-03-12 06:05:06

Got WA just bcz of using int
Use long long for Accepted.....

alpha_power: 2021-01-28 12:30:47

Yes, I did it.

it_uchi: 2021-01-04 16:38:45

AC in 1 go. I have Done it in O(n) after reading comments. :-(

hritwik: 2020-04-16 17:31:39

Just focus on this HINT: Wine transport between adjacent blocks= 1 work

chinmay0402: 2020-04-05 19:52:59

Awesome question!! Couldn't have done it in O(n) if I hadn't read the comments :)

sayan_244: 2019-12-15 09:29:36

Don't need to use queue
Just focus on this HINT: Wine transport between adjacent blocks= 1 work
O(N) works

Last edit: 2019-12-15 10:02:38
grvkmrpandit: 2019-11-29 11:28:15

no need to short.AC in one go O(n)


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