結果
| 問題 | 
                            No.2518 Adjacent Larger
                             | 
                    
| コンテスト | |
| ユーザー | 
                             FplusFplusF
                         | 
                    
| 提出日時 | 2023-10-27 21:59:44 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,248 bytes | 
| コンパイル時間 | 1,767 ms | 
| コンパイル使用メモリ | 198,012 KB | 
| 最終ジャッジ日時 | 2025-02-17 15:00:37 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 13 WA * 15 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
void solve(){
    ll n;
    cin >> n;
    vector<ll> a(n);
    ll cnt=0;
    rep(i,n){
        cin >> a[i];
        if(a[i]==1) cnt++;
    }
    if(n<=6){
        vector<ll> v(n);
        rep(i,n) v[i]=i;
        do{
            vector<ll> b(n,0);
            rep(i,n){
                ll x=(i-1+n)%n,y=(i+1)%n;
                if(v[i]<v[x]) b[i]++;
                if(v[i]<v[y]) b[i]++;
            }
            if(b==a){
                cout << "Yes\n";
                return;
            }
        }while(next_permutation(all(v)));
        cout << "No\n";
        return;
    }
    bool ok=true;
    rep(i,n-1){
        if(a[i]==a[i+1]&&a[i]!=1) ok=false;
    }
    if(cnt==n||!ok) cout << "No\n";
    else cout << "Yes\n";
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll t;
    cin >> t;
    while(t--){
        solve();
    }
}
            
            
            
        
            
FplusFplusF