309397: CF1672I. PermutationForces

Memory Limit:1024 MB Time Limit:5 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

PermutationForces

题意翻译

给定一个长度为 $n$ 的排列 $p_1,p_2,\cdots,p_n$,你可以进行如下操作若干次: - 选择 $1\le i\le |p|$ 满足 $|i-p_i|\le m$; - 对于所有 $1\le j\le |p|$ 的 $j$,若满足 $p_i<p_j$,则 $p_j\gets p_j-1$; - 之后删去 $p_i$,$p$ 后面的元素向前补位。 求最小的 $m$ 使经过 $n$ 次操作能将 $p$ 删空。

题目描述

You have a permutation $ p $ of integers from $ 1 $ to $ n $ . You have a strength of $ s $ and will perform the following operation some times: - Choose an index $ i $ such that $ 1 \leq i \leq |p| $ and $ |i-p_i| \leq s $ . - For all $ j $ such that $ 1 \leq j \leq |p| $ and $ p_i<p_j $ , update $ p_j $ to $ p_j-1 $ . - Delete the $ i $ -th element from $ p $ . Formally, update $ p $ to $ [p_1,\ldots,p_{i-1},p_{i+1},\ldots,p_n] $ . It can be shown that no matter what $ i $ you have chosen, $ p $ will be a permutation of integers from $ 1 $ to $ |p| $ after all operations. You want to be able to transform $ p $ into the empty permutation. Find the minimum strength $ s $ that will allow you to do so.

输入输出格式

输入格式


The first line of input contains a single integer $ n $ ( $ 1 \leq n \leq 5 \cdot 10^5 $ ) — the length of the permutation $ p $ . The second line of input conatains $ n $ integers $ p_1, p_2, \ldots, p_n $ ( $ 1 \leq p_i \leq n $ ) — the elements of the permutation $ p $ . It is guaranteed that all elements in $ p $ are distinct.

输出格式


Print the minimum strength $ s $ required.

输入输出样例

输入样例 #1

3
3 2 1

输出样例 #1

1

输入样例 #2

1
1

输出样例 #2

0

输入样例 #3

10
1 8 4 3 7 10 6 5 9 2

输出样例 #3

1

说明

In the first test case, the minimum $ s $ required is $ 1 $ . Here is how we can transform $ p $ into the empty permutation with $ s=1 $ : - In the first move, you can only choose $ i=2 $ as choosing any other value of $ i $ will result in $ |i-p_i| \leq s $ being false. With $ i=2 $ , $ p $ will be changed to $ [2,1] $ . - In the second move, you choose $ i=1 $ , then $ p $ will be changed to $ [1] $ . - In the third move, you choose $ i=1 $ , then $ p $ will be changed to $ [~] $ . It can be shown that with $ s=0 $ , it is impossible to transform $ p $ into the empty permutation.

Input

题意翻译

给定一个长度为 $n$ 的排列 $p_1,p_2,\cdots,p_n$,你可以进行如下操作若干次: - 选择 $1\le i\le |p|$ 满足 $|i-p_i|\le m$; - 对于所有 $1\le j\le |p|$ 的 $j$,若满足 $p_i<p_j$,则 $p_j\gets p_j-1$; - 之后删去 $p_i$,$p$ 后面的元素向前补位。 求最小的 $m$ 使经过 $n$ 次操作能将 $p$ 删空。

加入题单

算法标签: