您的位置:首页 > 大数据 > 人工智能

Codeforces Round #335 (Div. 2) C. Sorting Railway Cars

2016-01-09 21:26 411 查看
C. Sorting Railway Cars

time limit per test
2 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

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

The first line of the input contains integer n (1 ≤ n ≤ 100 000) —
the number of cars in the train.

The second line contains n integers pi (1 ≤ pi ≤ n, pi ≠ pj if i ≠ j) —
the sequence of the numbers of the cars in the train.

Output

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

Sample test(s)

input
5
4 1 2 5 3


output
2


input
4
4 1 3 2


output
2


Note

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.

解题报告:Codeforces Round #335 Problem Analysis

题意
给你1-n的一个排列
然后你的操作是可以把一个数放到结尾或者首部
然后问你最少多少次操作,可以将这个排列变成递增的

题解:

首先跑最长上升子序列是错的

比如 1 2 4 5 3

最长上升子序列答案跑出来是1

但实际上答案是2所以只能跑严格只比之前大1的子序列就好了
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: