Preparando MOJI

Almost Increasing Array

3000ms 524288K

Description:

We call an array almost increasing if we can erase not more than one element from it so that the array becomes strictly increasing (that is, every element is striclty greater than every element before it).

You are given an array a consisting of n elements. You are allowed to replace any element with any integer number (and you may do so any number of times you need). What is the minimum number of replacements you have to perform in order to make the array almost increasing?

Input:

The first line contains one integer n (2 ≤ n ≤ 200000) — the number of elements in a.

The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 109) — the array a.

Output:

Print the minimum number of replaces you have to perform so that a is almost increasing.

Sample Input:

5
5 4 3 2 1

Sample Output:

3

Sample Input:

5
1 2 8 9 5

Sample Output:

0

Informação

Codeforces

Provedor Codeforces

Código CF946G

Tags

data structuresdp

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:32:21

Relacionados

Nada ainda