Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
112054 | 李承瀚 | 求最长不下降序列 | C++ | 通过 | 100 | 0 MS | 272 KB | 496 | 2023-11-25 09:54:29 |
#include<bits/stdc++.h> using namespace std; int n,a[10005],dp[10005],p[10005],ans,k,t; stack<int>s; string str; char ch; int main() { getline(cin,str); istringstream iss(str); while(iss>>a[++n]) { dp[n]=1; t=0; for(int j=1;j<n;j++) if(a[j]<a[n]&&dp[j]>t) t=dp[j],p[n]=j; dp[n]+=t; if(ans<dp[n]) ans=dp[n],k=n; } cout<<"max="<<ans<<endl; while(k) { s.push(a[k]); k=p[k]; } while(!s.empty()) { cout<<s.top()<<' '; s.pop(); } return 0; }