#ARC072A. [ABC059C] Sequence
[ABC059C] Sequence
Score : points
Problem Statement
You are given an integer sequence of length . The -th term in the sequence is . 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 , the sum of the terms from the -st through -th term is not zero.
- For every , the sign of the sum of the terms from the -st through -th term, is different from the sign of the sum of the terms from the -st through -th term.
Constraints
- Each is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum necessary count of operations.
For example, the given sequence can be transformed into by four operations. The sums of the first one, two, three and four terms are and , respectively, which satisfy the conditions.
The given sequence already satisfies the conditions.