最长上升子序列
#include<bits/stdc++.h>
using namespace std;
const int N=1010;
int a[N];
int dp[N];
int n;
int main(){
cin>>n;
dp[1]=1;
int res=0;
for(int i=1;i<=n;i++)cin>>a[i];
for(int i=1;i<=n;i++){
dp[i]=1;
for(int j=1;j<=i;j++){
if(a[i]>a[j]){
dp[i]=max(dp[i],dp[j]+1);
}
}
res=max(res,dp[i]);
}
cout<<res;
}