CF319B.Psychos in a Line
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n psychos standing in a line. Each psycho is assigned a unique integer from 1 to n . At each step every psycho who has an id greater than the psycho to his right (if exists) kills his right neighbor in the line. Note that a psycho might kill and get killed at the same step.
You're given the initial arrangement of the psychos in the line. Calculate how many steps are needed to the moment of time such, that nobody kills his neighbor after that moment. Look notes to understand the statement more precise.
输入格式
The first line of input contains integer n denoting the number of psychos, (1<=n<=105) . In the second line there will be a list of n space separated distinct integers each in range 1 to n , inclusive — ids of the psychos in the line from left to right.
输出格式
Print the number of steps, so that the line remains the same afterward.
输入输出样例
输入#1
10 10 9 7 8 6 5 3 4 2 1
输出#1
2
输入#2
6 1 2 3 4 5 6
输出#2
0
说明/提示
In the first sample line of the psychos transforms as follows: [10 9 7 8 6 5 3 4 2 1] → [10 8 4] → [10]. So, there are two steps.