分析:
看到数据范围
n
l
o
g
n
nlogn
nlogn求最长不上升子序列
就在
u
p
p
e
r
_
b
o
u
n
d
upper\_bound
upper_bound后面加上
g
r
e
a
t
e
r
greater
greater就可以二分查找第一个小于的位置
当然也可以树状数组做
n
l
o
g
n
nlogn
nlogn
CODE:
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#define reg register
using namespace std;
typedef long long ll;
const int N=1e5+5;
int n,a[N],f[N],ans;
int main(){
scanf("%d",&n);
for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
f[++ans]=a[1];
for(int i=2;i<=n;i++)
{
if(a[i]<=f[ans]) f[++ans]=a[i];
else
{
int p=upper_bound(f+1,f+ans+1,a[i],greater<int>())-f;
f[p]=a[i];
}
}
printf("%d",ans);
return 0;
}