#include using namespace std; using ll = long long; using V = vector; using VV = vector; using VS = vector; using P = pair; using M = map; using Q = queue; using PQ = priority_queue; using PQG = priority_queue>; using S = set; const ll MOD = 1000000007; const ll Mod = 998244353; const ll INF = 1LL << 60; #define rep(i,n) for(int i = 0; i < n; i++) #define rep2(i,s,n) for(int i = s; i < n; i++) #define rep3(i,s,n) for(int i = s; i <= n; i++) #define all(x) (x).begin(),(x).end() #define MP(a,b) make_pair(a,b) #define fi first #define se second #define pb push_back #define pf push_front #define ppb pop_back #define ppf pop_front templatebool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} templatebool chmax(T&a, const T&b){if(avoid Vin(vector&a){rep(i,(int)a.size())cin>>a[i];} templatevoid Vout(const vector&a){rep(i,(int)a.size())cout<0){if(b&1)res=res*a%M;a=a*a%M;b>>=1;}return res;} const ll H[4] = {0,1,0,-1}, W[4] = {1,0,-1,0}; int main() { ll t; cin >> t; rep(i,t) { ll n; cin >> n; V a(2*n); Vin(a); if(n == 1) { if(a[0] == 1 && a[1] == 1) cout << "Yes" << endl; else cout << "No" << endl; continue; } if(n == 2) { if (a[0] == 1 && a[1] == 2 && a[2] == 1 && a[3] == 2) cout << "Yes" << endl; else cout << "No" << endl; continue; } VV b(n+1,V(n+1)); rep(j,2*n) { if(j == 0) b[a[j+1]][a[j]]++; else if(j == 2*n-1) b[a[j-1]][a[j]]++; else { b[a[j-1]][a[j]]++; b[a[j+1]][a[j]]++; } } bool frag = (a[0] == 1); rep2(j,1,n+1) { ll l = 1, r = 1; if(j < n) r++; if(j > 1) l++; if(b[j][j%n+1] != r || b[j][(j+n-2)%n+1] != l) frag = 0; } if(frag) cout << "Yes" << endl; else cout << "No" << endl; } }