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


  • 相关阅读:
    修复火狐主页被篡改成hao123的办法
    VMware中装Win2012并配置Hyper-v
    Linux下随机密码生成器
    GNS3 桥接虚拟网卡 telnet 实验
    冰点文库下载器停止工作解决办法
    《循序渐进》之简单的DHCP实验
    windows脚本配置ip地址
    phpmyadmin使用中碰到的一些问题
    phpmyadmin导入导出大数据文件的办法
    phpmyadmin的安装和使用
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/7185666.html
Copyright © 2011-2022 走看看