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;
    }
    


  • 相关阅读:
    javaweb快速入门-学习笔记
    初学者如何学习JAVA(本文网摘收藏)
    实施职业发展路线-三界之外无量天
    GUI(图形界面编程)
    selenium IE自动化问题汇总
    python 读取excel数据插入到另外一个excel
    一个简单的查询功能的测试思路
    python os用法笔记
    Python学习笔记(基本功能的使用)
    python 调用封装好的模块
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/7185666.html
Copyright © 2011-2022 走看看