zoukankan      html  css  js  c++  java
  • Codeforces 335C 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.

    题意:给你一个1~n的一个排列,一次操作是指把选一个数移动到头或尾,求使序列递增的最小操作数

    思路:我们需要找一个最长的递增子序列b1,b2,b3..bm,且该子序列要满足bm = bm-1 + 1. 比如4 1 2 5 3  满足的最长递增子序列是1 2 3,那么答案最终是n -m

    即我们找到这样的一个子序列后,对于其他的数,只要从小到达移到到该子序列的两端即可

    r[i]表示第i大的元素,d[i]表示比i小1的数在i的左边还是右边

    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <cmath>
    #include <cstdlib>
    #include <map>
    #include <set>
    #include <queue>
    using namespace std;
    const int INF = 0x3f3f3f3f;
    typedef long long ll;
    const int N = 100005;
    int dp[N], a[N], d[N], r[N];
    int cmp(int b, int c) {
        return a[b] < a[c];
    }
    int main()
    {
        int n;
        scanf("%d", &n);
        for(int i = 1; i <= n; ++i) scanf("%d", &a[i]);
        for(int i = 1; i <= n; ++i) r[i] = i;
        sort(r + 1, r + n + 1, cmp);
        d[1] = 1;
        for(int i = 1; i < n; ++i)
        {
            if(r[i] < r[i + 1]) d[i + 1] = 1;
            else d[i + 1] = 0;
        }
        dp[ r[1] ] = 1;
        int ans = 1;
        for(int i = 2; i <= n; ++i)
        {
            if(d[i]) dp[ r[i] ] = dp[ r[i-1] ] + 1;
            else dp[ r[i] ] = 1;
            ans = max(ans, dp[ r[i] ]);
        }
        printf("%d
    ", n - ans);
        return 0;
    }
    View Code
  • 相关阅读:
    webservice底层使用Socket进行网络调用
    jquery事件绑定
    C#连接PostgreSQL查询中文字符出现乱码情况
    Engine加载ArcGIS Online和ArcGIS Server发布的地图服务
    【转载】MFC中tabcontrol控件的使用
    一、VS2010创建一个MFC项目
    二、VS2012配置OpenCV
    三、编译和配置GDAL
    Python调用百度地图API(路线规划、POI检索)
    【转载】Python操作Excel的读取以及写入
  • 原文地址:https://www.cnblogs.com/orchidzjl/p/5035264.html
Copyright © 2011-2022 走看看