LIS
O(n^2)的算法十分简单,这里不再阐述
O(nlogn)的要维护一个单调队列
b[i]表示长度为i的最长上升子序列的最小元素值(要初始化)
这里可以用lower_bound来二分查找
注意是lower _ bound(上升)而不是upper _ bound(不下降)
不懂lower_bound看这里安利自己博客的时间到了
模板题:codevs1576
加强版:codevs3955
蒟蒻的代码
#include<cstdio>
#include<iostream>
#include<algorithm>
#define INF 2147483647
#define N 5010
using namespace std;
int n,p,d[N],m,q;
int main(){
freopen("data.txt","r",stdin);
scanf("%d",&n);
for(int i=0;i<=n;i++)d[i]=INF;
for(int i=1;i<=n;i++){
scanf("%d",&p);
q=lower_bound(d+1,d+m+1,p)-d;
d[q]=p;
m=max(q,m);
}
printf("%d\n",m);
// for(int i=0;i<=n;i++)printf("%d ",d[i]);
}