2574.Sorting Railway Cars

Time Limit: 1s Memory Limit: 256MB

An infinitely long railway has a train consisting of n cars, numbered from 1 to n (the numbers of all the cars are distinct) and positioned in arbitrary order. David Blaine wants to sort the railway cars in the order of increasing numbers. In one move he can make one of the cars disappear from its place and teleport it either to the beginning of the train, or to the end of the train, at his desire. What is the minimum number of actions David Blaine needs to perform in order to sort the train?

Input Format(From the terminal/stdin)

The first line of the input contains integer n (1 \le n \le 100000)- the number of cars in the train.

The second line contains n integers pi (1 \le pi \le n, pi \neq pj if i \neq j)- the sequence of the numbers of the cars in the train.

Output Format(To the terminal/stdout)

Print a single integer- the minimum number of actions needed to sort the railway cars.

Sample Input 1

Copy
5
4 1 2 5 3
 \n
 · · · · \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
4
4 1 3 2
 \n
 · · · \n

Sample Output 2

Copy
2
 \n

Hints

In the first sample you need first to teleport the 4-th car, and then the 5-th car to the end of the train.

Submit

请先 登录

© 2025 FAQs