結果

問題 No.2518 Adjacent Larger
ユーザー FplusFplusFFplusFplusF
提出日時 2023-10-27 22:06:04
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,278 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 205,132 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 14:11:22
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 12 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#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);
    vector<ll> cnt(3,0);
    rep(i,n){
        cin >> a[i];
        cnt[a[i]]++;
    }
    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[0]==0||cnt[1]==0||cnt[2]==0||!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();
    }
}
0