题库练习 Sonya and Problem Wihtout a Legend
← 上一题 下一题 →

A10473 | Sonya and Problem Wihtout a Legend

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Sonya was unable to think of a story for this problem, so here comes the formal description.

You are given the array containing $n$ positive integers. At one turn you can pick any element and increase or decrease it by $1$ . The goal is the make the array strictly increasing by making the minimum possible number of operations. You are allowed to change elements in any way, they can become negative or equal to $0$ .

输入格式

The first line of the input contains a single integer $n$ ( $1<=n<=3000$ ) — the length of the array.

Next line contains $n$ integer $a_{i}$ ( $1<=a_{i}<=10^{9}$ ).

输出格式

Print the minimum number of operation required to make the array strictly increasing.

输入输出样例

输入 #1
7
2 1 5 11 5 9 11
输出 #1
9
输入 #2
5
5 4 3 2 1
输出 #2
12
C++ 编辑器
输入
输出