Codeforces 605A.Sorting Railway Cars【技巧】_字串

來源:互聯網
上載者:User
A. 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. Examples input

54 1 2 5 3
output
2
input
44 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. AC-code:

//#include<bits/stdc++.h>  #include<iostream>#include<cstdio>#include<algorithm>#include<cstring>using namespace std;int main(){int n,i,j,flag,a,dp[100005];cin>>n;flag=1;memset(dp,0,sizeof(dp));for(i=0;i<n;i++){cin>>a;dp[a]=dp[a-1]+1;}sort(dp+1,dp+n+1);cout<<n-dp[n]<<endl;return 0;} 


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.