Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
140539 | 苏唯哲 | 最长不下降子序列 | C++ | 解答错误 | 10 | 18 MS | 672 KB | 393 | 2024-03-30 15:48:04 |
#include<bits/stdc++.h> using namespace std; int a[100005],f[100005],n,longest; int main(){ cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; if(f[longest]<=a[i])f[++longest]=a[i]; else{ int l=0,r=longest; while(l<=r){ int mid=(l+r)/2; if(mid<=a[i]){ l=mid+1; if(f[l]>a[i])break; }else r=mid-1; } f[l]=a[i]; } } cout<<longest<<endl; }