提交时间:2023-11-25 08:09:57

运行 ID: 111797

#include<bits/stdc++.h> using namespace std; int a[201],n,dp[201],maxn; int main(){ while(cin>>a[++n]) dp[n]=1; n--; for(int i=n-1;i>0;i--) for(int j=i+1;j<=n;j++) if(dp[i]<dp[j]+1&&a[i]<a[j]) dp[i]=dp[j]+1; for(int i=1;i<=n;i++){ maxn=max(maxn,dp[i]); } cout<<"max="<<maxn; return 0; }