#include using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int N; vector V; int LIS(vector& v) { int i,N=v.size(); vector dp(N,1<<30),id(N); FOR(i,v.size()) { *lower_bound(dp.begin(),dp.end(),v[i]+1)=v[i]; //こうすると同じ値も許容する } int ret=0; FORR(a,dp) if(a<(1<<30)) ret++; return ret; } template int LIS_num(vector& v) { int i,N=v.size(); vector dp(N,(numeric_limits::max)()),id(N); FOR(i,v.size()) dp[id[i]=lower_bound(dp.begin(),dp.end(),v[i]) - dp.begin()] = v[i]-1; return *max_element(id.begin(),id.end())+1; } void solve() { int i,j,k,l,r,x,y; string s; cin>>N; FOR(i,N) { cin>>x; V.push_back(x+N-i); } auto a=LIS(V); cout<