結果
| 問題 |
No.2518 Adjacent Larger
|
| コンテスト | |
| ユーザー |
FplusFplusF
|
| 提出日時 | 2023-10-27 22:06:04 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,278 bytes |
| コンパイル時間 | 1,969 ms |
| コンパイル使用メモリ | 198,808 KB |
| 最終ジャッジ日時 | 2025-02-17 15:04:13 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 12 WA * 16 |
ソースコード
#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();
}
}
FplusFplusF