#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define endl codeforces #define ALL(v) std::begin(v), std::end(v) #define ALLR(v) std::rbegin(v), std::rend(v) using ll = std::int64_t; using ull = std::uint64_t; using pii = std::pair; using tii = std::tuple; using pll = std::pair; using tll = std::tuple; using size_type = ssize_t; template using vec = std::vector; template using vvec = vec>; template const T& var_min(const T &t) { return t; } template const T& var_max(const T &t) { return t; } template const T& var_min(const T &t, const Tail&... tail) { return std::min(t, var_min(tail...)); } template const T& var_max(const T &t, const Tail&... tail) { return std::max(t, var_max(tail...)); } template void chmin(T &t, const Tail&... tail) { t = var_min(t, tail...); } template void chmax(T &t, const Tail&... tail) { t = var_max(t, tail...); } template struct multi_dim_array { using type = std::array::type, Head>; }; template struct multi_dim_array { using type = std::array; }; template using mdarray = typename multi_dim_array::type; template void fill_seq(T &t, F f, Args... args) { if constexpr (std::is_invocable::value) { t = f(args...); } else { for (size_type i = 0; i < t.size(); i++) fill_seq(t[i], f, args..., i); } } template vec make_v(size_type sz) { return vec(sz); } template auto make_v(size_type hs, Tail&&... ts) { auto v = std::move(make_v(std::forward(ts)...)); return vec(hs, v); } namespace init__ { struct InitIO { InitIO() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(30); } } init_io; } template T ceil_pow2(T bound) { T ret = 1; while (ret < bound) ret *= 2; return ret; } template T ceil_div(T a, T b) { return a / b + !!(a % b); } bool solve() { ll n; std::cin >> n; vec av(n); for (ll &e : av) std::cin >> e; auto check = [&](ll idx) { std::array c = {{ av[idx], av[idx + 1], av[idx + 2] }}; if (c[0] == c[1] || c[1] == c[2] || c[2] == c[0]) return false; if (c[0] < c[1] && c[2] < c[1]) return true; if (c[1] < c[0] && c[1] < c[2]) return true; return false; }; vec ok_a(n); ll sum_a = 0; vec idx_a; auto add_cand = [&](vec &v, ll i) { for (ll j = 0; j <= 2; j++) if (0 <= i + j && i + j < n) v.push_back(i + j); }; for (ll i = 0; i < n - 2; i++) { const bool af = check(i); sum_a += af; ok_a[i] = af; if (!af) add_cand(idx_a, i); } if (15 < n - 2 - sum_a) return false; auto cnt_uniq = [&](vec &v) { std::sort(ALL(v)); auto ite = std::unique(ALL(v)); ll dist = std::distance(v.begin(), ite); return dist; }; for (ll i1 : idx_a) for (ll i2 = 0; i2 < n; i2++) { if (i1 == i2) continue; if (av[i1] == av[i2]) continue; std::swap(av[i1], av[i2]); vec buf, dbuf; for (ll idx : { i1, i2 }) { for (ll i = -2; i <= 2; i++) { ll nidx = idx + i; if (!(0 <= nidx && nidx + 2 < n)) continue; const bool f1 = ok_a[nidx], f2 = check(nidx); if (f1 && !f2) dbuf.push_back(nidx); if (!f1 && f2) buf.push_back(nidx); } } ll tmp = sum_a; tmp += cnt_uniq(buf); tmp -= cnt_uniq(dbuf); if (tmp == n - 2) return true; std::swap(av[i1], av[i2]); } return false; } int main() { ll t; std::cin >> t; while (t--) std::cout << (solve() ? "Yes" : "No") << "\n"; return 0; }