zoukankan      html  css  js  c++  java
  • POJ 3670 Eating Together(LIS)

    Description

    The cows are so very silly about their dinner partners. They have organized themselves into three groups (conveniently numbered 1, 2, and 3) that insist upon dining together. The trouble starts when they line up at the barn to enter the feeding area.

    Each cow i carries with her a small card upon which is engraved Di (1 ≤ Di ≤ 3) indicating her dining group membership. The entire set of N (1 ≤ N ≤ 30,000) cows has lined up for dinner but it's easy for anyone to see that they are not grouped by their dinner-partner cards.

    FJ's job is not so difficult. He just walks down the line of cows changing their dinner partner assignment by marking out the old number and writing in a new one. By doing so, he creates groups of cows like 111222333 or 333222111 where the cows' dining groups are sorted in either ascending or descending order by their dinner cards.

    FJ is just as lazy as the next fellow. He's curious: what is the absolute mminimum number of cards he must change to create a proper grouping of dining partners? He must only change card numbers and must not rearrange the cows standing in line.

    Input

    * Line 1: A single integer: N
    * Lines 2..N+1: Line i describes the i-th cow's current dining group with a single integer: Di

    Output

    * Line 1: A single integer representing the minimum number of changes that must be made so that the final sequence of cows is sorted in either ascending or descending order

    Sample Input

    5
    1
    3
    2
    1
    1
    

    Sample Output

    1
    

    Source


    题意:将不同编号的牛改成升序123降序321的最小操作步骤。

    数据30000。用nlogn的方法。

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<limits.h>
    using namespace std;
    const int maxn=30001;
    int num[maxn],s[maxn];
    
    int main()
    {
        int n,len1,len2;
        int l,r,mid;
        while(~scanf("%d",&n))
        {
            for(int i=0;i<n;i++)
                scanf("%d",&num[i]);
            memset(s,0,sizeof(s));
            s[0]=-1;
            len1=0;
            for(int i=0;i<n;i++)//升123
            {
                if(num[i]>=s[len1])
                    s[++len1]=num[i];
                else
                {
                    l=1,r=len1;
                    while(l<=r)
                    {
                        mid=(l+r)>>1;
                        if(num[i]>=s[mid])
                            l=mid+1;
                        else
                            r=mid-1;
                    }
                    s[l]=num[i];
                }
            }
            memset(s,0,sizeof(s));
            len2=0;
            s[0]=INT_MAX;
            for(int i=0;i<n;i++)//降321
            {
                if(s[len2]>=num[i])
                    s[++len2]=num[i];
                else
                {
                    l=1,r=len2;
                    while(l<=r)
                    {
                        mid=(l+r)>>1;
                        if(num[i]<=s[mid])
                            l=mid+1;
                        else
                            r=mid-1;
                    }
                    s[l]=num[i];
                }
            }
            int ans=n-max(len1,len2);
            printf("%d
    ",ans);
        }
        return 0;
    }
    


  • 相关阅读:
    hihoCoder 1398 : 网络流五·最大权闭合子图
    hihoCoder:1394 : 网络流四·最小路径覆盖
    hihoCoder 1393: 网络流三·二分图多重匹配
    hihoCoder1378:网络流二·最大流最小割定理
    hihoCoder1369:网络流一·Ford-Fulkerson算法(FF算法)
    [NOIP2011]铺地毯(贪心)
    hdu 3452:Bonsai(最小割)
    hdu 3549:Flow Problem(最大流)
    (转载)JavaScript中定义变量
    (转载)浅谈javascript的分号
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/7185666.html
Copyright © 2011-2022 走看看