atcoder#ARC072A. [ABC059C] Sequence

[ABC059C] Sequence

Score : 300300 points

Problem Statement

You are given an integer sequence of length NN. The ii-th term in the sequence is aia_i. In one operation, you can select a term and either increment or decrement it by one.

At least how many operations are necessary to satisfy the following conditions?

  • For every ii (1in)(1 \leq i \leq n), the sum of the terms from the 11-st through ii-th term is not zero.
  • For every ii (1in1)(1 \leq i \leq n-1), the sign of the sum of the terms from the 11-st through ii-th term, is different from the sign of the sum of the terms from the 11-st through (i+1)(i+1)-th term.

Constraints

  • 2n1052 \leq n \leq 10^5
  • ai109|a_i| \leq 10^9
  • Each aia_i is an integer.

Input

Input is given from Standard Input in the following format:

nn

a1a_1 a2a_2 ...... ana_n

Output

Print the minimum necessary count of operations.

4
1 -3 1 0
4

For example, the given sequence can be transformed into 1,2,2,21, -2, 2, -2 by four operations. The sums of the first one, two, three and four terms are 1,1,11, -1, 1 and 1-1, respectively, which satisfy the conditions.

5
3 -6 4 -5 7
0

The given sequence already satisfies the conditions.

6
-1 4 3 2 -5 4
8