結果

問題 No.2518 Adjacent Larger
ユーザー FplusFplusFFplusFplusF
提出日時 2023-10-27 22:06:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,278 bytes
コンパイル時間 2,469 ms
コンパイル使用メモリ 206,140 KB
実行使用メモリ 4,812 KB
最終ジャッジ日時 2023-10-27 22:06:10
合計ジャッジ時間 3,925 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 13 ms
4,796 KB
testcase_17 AC 9 ms
4,348 KB
testcase_18 AC 9 ms
4,348 KB
testcase_19 AC 7 ms
4,348 KB
testcase_20 AC 10 ms
4,348 KB
testcase_21 AC 14 ms
4,796 KB
testcase_22 AC 15 ms
4,796 KB
testcase_23 AC 13 ms
4,796 KB
testcase_24 AC 12 ms
4,796 KB
testcase_25 AC 13 ms
4,796 KB
testcase_26 AC 13 ms
4,796 KB
testcase_27 AC 13 ms
4,796 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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