C - Linear Approximation Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 300300

問題文

すぬけ君は、長さ NN の整数列 AA を持っています。

すぬけ君は、整数 bb を自由に選びます。 この時、AiA_ib+ib+i が離れているとすぬけ君は悲しいです。 より具体的には、すぬけ君の悲しさの値は、次の式で計算されます。 なおここで、abs(x)abs(x)xx の絶対値を返す関数です。

  • abs(A1(b+1))+abs(A2(b+2))+...+abs(AN(b+N))abs(A_1 - (b+1)) + abs(A_2 - (b+2)) + ... + abs(A_N - (b+N))

すぬけ君の悲しさの値の最小値を求めてください。

制約

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • 入力はすべて整数である。

入力

入力は以下の形式で標準入力から与えられる。

NN
A1A_1 A2A_2 ...... ANA_N

出力

すぬけ君の悲しさの値の最小値を出力せよ。


入力例 1Copy

Copy
5
2 2 3 5 5

出力例 1Copy

Copy
2

b=0b=0 とすれば、すぬけ君の悲しさの値は、abs(2(0+1))+abs(2(0+2))+abs(3(0+3))+abs(5(0+4))+abs(5(0+5))=2abs(2-(0+1))+abs(2-(0+2))+abs(3-(0+3))+abs(5-(0+4))+abs(5-(0+5))=2 となります。 bb をどのように選んでも、すぬけ君の悲しさの値を 22 未満にすることは出来ないので、答えは 22 になります。


入力例 2Copy

Copy
9
1 2 3 4 5 6 7 8 9

出力例 2Copy

Copy
0

入力例 3Copy

Copy
6
6 5 4 3 2 1

出力例 3Copy

Copy
18

入力例 4Copy

Copy
7
1 1 1 1 2 3 4

出力例 4Copy

Copy
6

Score : 300300 points

Problem Statement

Snuke has an integer sequence AA of length NN.

He will freely choose an integer bb. Here, he will get sad if AiA_i and b+ib+i are far from each other. More specifically, the sadness of Snuke is calculated as follows:

  • abs(A1(b+1))+abs(A2(b+2))+...+abs(AN(b+N))abs(A_1 - (b+1)) + abs(A_2 - (b+2)) + ... + abs(A_N - (b+N))

Here, abs(x)abs(x) is a function that returns the absolute value of xx.

Find the minimum possible sadness of Snuke.

Constraints

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN
A1A_1 A2A_2 ...... ANA_N

Output

Print the minimum possible sadness of Snuke.


Sample Input 1Copy

Copy
5
2 2 3 5 5

Sample Output 1Copy

Copy
2

If we choose b=0b=0, 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))=2abs(2-(0+1))+abs(2-(0+2))+abs(3-(0+3))+abs(5-(0+4))+abs(5-(0+5))=2. Any choice of bb does not make the sadness of Snuke less than 22, so the answer is 22.


Sample Input 2Copy

Copy
9
1 2 3 4 5 6 7 8 9

Sample Output 2Copy

Copy
0

Sample Input 3Copy

Copy
6
6 5 4 3 2 1

Sample Output 3Copy

Copy
18

Sample Input 4Copy

Copy
7
1 1 1 1 2 3 4

Sample Output 4Copy

Copy
6


2025-04-24 (Thu)
05:11:49 +00:00