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


  • 相关阅读:
    IoC就是IoC,不是什么技术,与GoF一样,是一种 设计模式。
    控制反转是Spring框架的核心。
    一种是CI(Constructor Injection)构造方法注入,另一种是SI(Set Injection) set 注入
    IOC 的理解与解释
    java 单例模式5种写法
    AOP(Aspect Oriented Programming),即面向切面编程
    AOP称为面向切面编程,在程序开发中主要用来解决一些系统层面上的问题
    ioc和aop的区别?
    JAVA设计模式之单例模式
    详解JNDI的lookup资源引用 java:/comp/env
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/7185666.html
Copyright © 2011-2022 走看看