#include #include #include using namespace std; using i64 = long long; using u64 = unsigned long long; using i32 = int; using u32 = unsigned int; #define rep(i,n) for(int i=0; i<(n); i++) void testcase(){ int N; cin >> N; vector iP(N); rep(i,N){ int p; cin >> p; p--; iP[p] = i; } vector flag(N+2, 0); int nowans = 1; int ans = 1; rep(i,N){ int p = iP[i]; if(flag[p] != flag[p+1]) nowans--; if(flag[p+2] != flag[p+1]) nowans--; flag[p+1] ^= 1; if(flag[p] != flag[p+1]) nowans++; if(flag[p+2] != flag[p+1]) nowans++; int newans2 = nowans; if(flag[N] == 1) newans2--; ans = max(ans, newans2); } cout << ans << "\n"; } int main() { int T; cin >> T; while(T--) testcase(); return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;