結果
問題 | No.2343 (l+r)/2 |
ユーザー | FplusFplusF |
提出日時 | 2023-06-09 22:09:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,264 bytes |
コンパイル時間 | 2,064 ms |
コンパイル使用メモリ | 210,160 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-06-10 13:24:12 |
合計ジャッジ時間 | 2,809 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 57 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 12 ms
7,680 KB |
testcase_05 | AC | 5 ms
6,940 KB |
testcase_06 | AC | 5 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 9 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 11 ms
6,944 KB |
ソースコード
#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; } } bool f(ll n,vector<ll> &a){ a.push_back(INF); vector<ll> v; ll cnt=1; rep(i,n){ if(a[i]!=a[i+1]){ v.push_back(cnt); cnt=1; }else{ cnt++; } } ll m=v.size(); if(m==1) return false; vector<vector<bool>> dp(m,vector<bool>(2,false)); dp[0][0]=true; rep(i,m-1){ if(dp[i][0]){ dp[i+1][1]=true; } if(dp[i][1]){ dp[i+1][0]=true; if(2<=v[i]) dp[i+1][1]=true; } } return dp[m-1][1]; } void solve(){ ll n; cin >> n; vector<ll> a(n); rep(i,n) cin >> a[i]; vector<ll> ra=a; reverse(all(ra)); if(f(n,a)||f(n,ra)) cout << "Yes\n"; else cout << "No\n"; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll t; cin >> t; while(t--){ solve(); } }