CF946G.Almost Increasing Array
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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?
输入格式
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 .
输出格式
Print the minimum number of replaces you have to perform so that a is almost increasing.
输入输出样例
输入#1
5 5 4 3 2 1
输出#1
3
输入#2
5 1 2 8 9 5
输出#2
0