Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
140542 | 方文轩 | 最长不下降子序列 | C++ | 通过 | 100 | 20 MS | 644 KB | 372 | 2024-03-30 15:48:17 |
#include<bits/stdc++.h> using namespace std; int a[100005],f[100005],n,lo; int main(){ cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; if(f[lo]<=a[i]) f[++lo]=a[i]; else{ int l=0,r=lo; while(l<=r){ int m=(l+r)>>1; if(f[m]<=a[i]){ l=m+1; if(f[l]>a[i]) break; } else r=m-1; } f[l]=a[i]; } } cout<<lo<<endl; }