首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【CodeForces 605A】BUPT 2015 newbie practice #2 div2-E - Sorting Railway Cars

【CodeForces 605A】BUPT 2015 newbie practice #2 div2-E - Sorting Railway Cars

作者头像
饶文津
发布2020-05-31 23:32:46
4950
发布2020-05-31 23:32:46
举报
文章被收录于专栏:饶文津的专栏饶文津的专栏

http://acm.hust.edu.cn/vjudge/contest/view.action?cid=102419#problem/E

Description

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 ≤ npi ≠ 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 Input

Input

5
4 1 2 5 3

Output

2

Input

4
4 1 3 2

Output

2

Hint

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.

题解:找到这些数中最长的连续的序列(形如123、234、45678),长度为mlen,就是差值为1的上升序列,然后答案就是n-mlen。

因为总共n个数,每个1..n都会出现一次,len[i]表示以i结尾的连续序列的最大长度,则len[a]=len[a-1]+1。

代码:

#include<stdio.h>
int len[100005],n,a,i,mlen=1;
int main(){
    scanf("%d",&n);
    for(i=1;i<=n;i++){
        scanf("%d",&a);
        len[a]=len[a-1]+1;
        if(len[a]>mlen)mlen=len[a];
    }
    printf("%d\n",n-mlen);
    return 0;
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-01-05 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档