atcoder#ARC100A. [ABC102C] Linear Approximation
[ABC102C] Linear Approximation
Score : points
Problem Statement
Snuke has an integer sequence of length .
He will freely choose an integer . Here, he will get sad if and are far from each other. More specifically, the sadness of Snuke is calculated as follows:
- $abs(A_1 - (b+1)) + abs(A_2 - (b+2)) + ... + abs(A_N - (b+N))$
Here, is a function that returns the absolute value of .
Find the minimum possible sadness of Snuke.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum possible sadness of Snuke.
5
2 2 3 5 5
2
If we choose , the sadness of Snuke would be $abs(2-(0+1))+abs(2-(0+2))+abs(3-(0+3))+abs(5-(0+4))+abs(5-(0+5))=2$. Any choice of does not make the sadness of Snuke less than , so the answer is .
9
1 2 3 4 5 6 7 8 9
0
6
6 5 4 3 2 1
18
7
1 1 1 1 2 3 4
6