Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
140687 | 吴宗桦 | 最长不下降子序列 | C++ | 通过 | 100 | 22 MS | 644 KB | 436 | 2024-03-30 17:09:51 |
#include <bits/stdc++.h> using namespace std; int n,x[100005],Lis[100005],longest=0; int main() { cin>>n; for(int i=0; i<n; i++) { cin>>x[i]; if(!i) Lis[longest++]=x[i]; else { if(x[i]<Lis[longest-1]) { int j=upper_bound(Lis,Lis+longest,x[i])-Lis; Lis[j]=x[i]; } else { Lis[longest++]=x[i]; } } } cout<<longest; return 0; }