CF605A.Sorting Railway Cars

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

An infinitely long railway has a train consisting of nn cars, numbered from 11 to nn (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?

输入格式

The first line of the input contains integer nn ( 1<=n<=1000001<=n<=100000 ) — the number of cars in the train.

The second line contains nn integers pip_{i} ( 1<=pi<=n1<=p_{i}<=n , pipjp_{i}≠p_{j} if iji≠j ) — the sequence of the numbers of the cars in the train.

输出格式

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

输入输出样例

  • 输入#1

    5
    4 1 2 5 3
    

    输出#1

    2
    
  • 输入#2

    4
    4 1 3 2
    

    输出#2

    2
    

说明/提示

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

首页