Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
140887 杨博煊 最长不下降子序列 C++ 通过 100 12 MS 656 KB 424 2024-04-01 13:18:58

Tests(10/10):


#include <bits/stdc++.h> using namespace std; int n,x[100001],Lis[100001],l=0; int main() { cin>>n; for(int i=0; i<n; i++) { scanf("%d",&x[i]); if(!i) Lis[l++]=x[i]; else { if(x[i]<Lis[l-1]) { int j=upper_bound(Lis,Lis+l,x[i])-Lis; Lis[j]=x[i]; } else { Lis[l++]=x[i]; } } } printf("%d",l); return 0; }


测评信息: