const int N=1010;
int f[N];//以第i个数结尾的最长上升子序列
int a[N];
int n;
int main()
{
cin>>n;
for(int i=1;i<=n;i++) cin>>a[i];
for(int i=1;i<=n;i++)
{
f[i]=1;
for(int j=1;j<i;j++)
if(a[i] > a[j]) f[i]=max(f[i],f[j]+1);
}
int res=0;
for(int i=1;i<=n;i++) res=max(res,f[i]);
cout<<res<<endl;
//system("pause");
}
原文:https://www.cnblogs.com/fxh0707/p/13747537.html