結果
問題 | No.2343 (l+r)/2 |
ユーザー | random contestant |
提出日時 | 2023-06-09 21:47:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 953 bytes |
コンパイル時間 | 3,754 ms |
コンパイル使用メモリ | 272,428 KB |
実行使用メモリ | 12,672 KB |
最終ジャッジ日時 | 2024-06-10 13:10:04 |
合計ジャッジ時間 | 5,021 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 351 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 20 ms
6,940 KB |
testcase_05 | AC | 8 ms
6,940 KB |
testcase_06 | AC | 7 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 12 ms
6,940 KB |
testcase_11 | AC | 45 ms
10,880 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 54 ms
12,672 KB |
ソースコード
// #define _GLIBCXX_DEBUG #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; #define rep(i,n) for (ll i = 0; i < (n); ++i) using vl = vector<ll>; using vvl = vector<vl>; using P = pair<ll,ll>; #define pb push_back #define int long long #define double long double #define INF (ll) 3e18 // Ctrl + Shift + B コンパイル // Ctrl + C 中断 // ./m 実行 void solve(){ int n; cin >> n; vl a(n); rep(i,n) cin >> a[i]; int pre = -1; map<int,int> mpcnt; map<int,int> mpdel; rep(i,n){ mpcnt[a[i]]++; if (a[i] == pre) mpdel[a[i]]++; pre = a[i]; } map<int, int> mp; for(int i = mpcnt[0]-mpdel[0]; i <= mpcnt[0]; i++) mp[i]++; for(int i = mpcnt[1]-mpdel[1]; i <= mpcnt[1]; i++) mp[i]++; for(auto [_, x] : mp) if (x == 2){ cout << "Yes" << endl; return; } cout << "No" << endl; } signed main(){ int t; cin >> t; while(t--){ solve(); } }