POJ 2533 Longest Ordered Subsequence LIS O(n*log(n))

题目链接

最长上升子序列O(n*log(n))的做法,只能用于求长度不能求序列。

 

#include <iostream>
#include <algorithm>
using namespace std;
const int N=50050;
int s[N],x;
int main()
{
    int n;
    while(cin>>n){
        int top=0;
        for(int i=0;i<n;i++){
            cin>>x;
            if(top==0||s[top-1]<x) s[top++]=x;
            else s[upper_bound(s,s+top,x)-s]=x;
        }
        cout<<top<<endl;
    }
    return 0;
}

 

 

 

 

 

 

posted @ 2016-12-24 16:36  Ritchie丶  阅读(194)  评论(0编辑  收藏  举报