IOI Zoo is famous for giraffes. There are giraffes in IOI Zoo, numbered from to in ascending order of their heights. The heights of the giraffes are different from each other. There are cages placed in a straight line, numbered from to from left to right. In each cage, a giraffe is living in it. The giraffe is living in the cage .
Mr. APIO is the curator of IOI Zoo. He is worrying about the ratings of IOI Zoo in reviews. IOI Zoo receives low ratings for the reason that "the visual quality of the giraffes is bad." Precisely, when a visitor takes a picture of giraffes, the visitor chooses integers and takes a picture of the giraffes in the cages . Then, the visual quality of the giraffes becomes bad if both of the following conditions are satisfied.
- There is a giraffe in the picture which is taller than the giraffes in both ends of the picture. In other words, there is an integer satisfying .
- There is a giraffe in the picture which is shorter than the giraffes in both ends of the picture. In other words, there is an integer satisfying .
Mr. APIO will arrange the positions of the giraffes so that the visual quality of the giraffes does not become bad for any choice of when a visitor takes a picture. Since it takes a lot of work to move a giraffe from one cage to another cage, he wants to minimize the number of giraffes which are moved. Of course, after he finishes moving the giraffes, in each cage, a giraffe should be living in it.
Given information of the current positions of the giraffes, write a program which calculates the minimum number of giraffes which are moved. Since Mr. APIO arranged the current positions of the giraffes at random, you may assume that the values are generated at random (See Generation of Input Data for details).
Input Specification
Read the following data from the standard input. Given values are all integers.
Output Specification
Write one line to the standard output. The output should contain the minimum number of giraffes which are moved.
Constraints
- .
- .
- .
- The values are generated at random (See Generation of Input Data for details).
Subtasks
- (10 points) .
- (22 points) .
- (27 points) .
- (41 points) No additional constraints.
Generation of Input Data
In this task, except for Sample Input, there are test cases which satisfy the constraints of Subtasks 1, 2, 3, 4. Also, there are test cases which satisfy the constraints of Subtasks 2, 3, 4 only, there are test cases which satisfy the constraints of Subtasks only, and there are test cases which satisfy the constraints of Subtask only. In total, including Sample Input, test cases are used for grading. All test cases for this task are generated in the following way.
- First, choose satisfying the constraints of each subtask.
- Then, among the permutations satisfying the constraints, choose one permutation at random with equal probability and generate .
Sample Input 1
6
5 4 6 1 3 2
Sample Output 1
2
Explanation for Sample 1
There are giraffes in IOI Zoo. From the left, the giraffes are living in the cages in this order. In this arrangement, if a visitor takes a picture for , , the visual quality of the giraffes becomes bad. The two conditions are satisfied as follows.
- The giraffe in the cage is taller than the leftmost giraffe (= cage ) in the picture and the rightmost giraffe (= cage ) in the picture.
- The giraffe in the cage is shorter than the leftmost giraffe (= cage ) in the picture and the rightmost giraffe (= cage ) in the picture.
If Mr. APIO moves the giraffe from the cage to the cage , and he moves the giraffe from the cage to the cage , the visual quality of the giraffes does not become bad for any choice of when a visitor takes a picture. Mr. APIO achieves the goal by moving giraffes. Since it is the minimum value, output .
This sample input satisfies the constraints of all the subtasks.
Sample Input 2
4
4 1 3 2
Sample Output 2
0
Explanation for Sample 2
There are giraffes in IOI Zoo. From the left, the giraffes are living in the cages in this order. In this arrangement, the visual quality of the giraffes does not become bad for any choice of when a visitor takes a picture. Mr. APIO does not need to move giraffes. Therefore, output .
This sample input satisfies the constraints of all the subtasks.
Sample Input 3
7
3 1 6 7 4 2 5
Sample Output 3
2
Explanation for Sample 3
For example, if Mr. APIO moves the giraffes so that the giraffes are living in the cages in this order. Then, the visual quality of the giraffes does not become bad for any choice of when a visitor takes a picture. Mr. APIO achieves the goal by moving giraffes. Since it is the minimum value, output .
This sample input satisfies the constraints of all the subtasks.
Sample Input 4
13
8 5 6 13 4 2 11 3 9 1 10 7 12
Sample Output 4
6
This sample input satisfies the constraints of Subtasks 2, 3, 4.
Comments