You are given an integer sequence of length N. The i-th term in the sequence is ai. 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?
Input is given from Standard Input in the following format:
n a1 a2 ... an
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, -2 by four operations. The sums of the first one, two, three and four terms are 1, -1, 1 and -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
Subtask | Score |
---|---|
1 | 100 |
2 | 0 |