zoukankan      html  css  js  c++  java
  • Codeforces Round #335 (Div. 2) C. Sorting Railway Cars

    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.

    Examples
    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.

    思路:因为最后的答案一定是1,2,3,4,。。。。n;

       所以我本来想求最长公共子序列,发现时间复杂度太大;

       后来想因为一定上升只要求最长连续上升即可;

    #include<bits/stdc++.h>
    using namespace std;
    #define ll __int64
    #define esp 1e-13
    const int N=1e5+10,M=1e6+1000,inf=1e9+10,mod=1000000007;
    int a[N];
    int dp[N];
    int flag[N];
    int main()
    {
        int x,y,z,i,t;
        scanf("%d",&x);
        for(i=1;i<=x;i++)
        scanf("%d",&y),flag[y]=i;
        dp[1]=1;
        for(i=2;i<=x;i++)
        {
            dp[i]=1;
            if(flag[i]>flag[i-1])
            dp[i]=dp[i-1]+1;
        }
        int ans=1;
        for(i=1;i<=x;i++)
            ans=max(ans,dp[i]);
        printf("%d
    ",x-ans);
        return 0;
    }
  • 相关阅读:
    java语言实现堆排序
    堆排序
    静态分派
    谈mysql优化
    Unity2017.1官方UGUI文档翻译——Canvas
    Unity2017.1官方UGUI文档翻译——Rect Transform
    Unity2017.1官方UGUI文档翻译——Rich Text
    Unity2017.1官方UGUI文档翻译——Auto Layout
    Unity2017.1官方UGUI文档翻译——Animation Integration
    Unity2017.1官方UGUI文档翻译——Interaction Components
  • 原文地址:https://www.cnblogs.com/jhz033/p/5802529.html
Copyright © 2011-2022 走看看