結果
問題 | No.2283 Prohibit Three Consecutive |
ユーザー | 河城白露 |
提出日時 | 2023-04-28 23:24:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,281 bytes |
コンパイル時間 | 622 ms |
コンパイル使用メモリ | 83,200 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-17 22:17:50 |
合計ジャッジ時間 | 1,178 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 5 ms
6,816 KB |
testcase_09 | AC | 4 ms
6,820 KB |
testcase_10 | AC | 5 ms
6,816 KB |
testcase_11 | AC | 4 ms
6,816 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include <iostream> #include <string> #include <set> #include <map> #include <vector> #include <queue> #define ll long long #define db double using namespace std; const ll N = 2e5 + 100; ll tt,n; char ch[N]; void solve() { scanf("%lld",&n); scanf("%s",ch); bool f = 1; for (ll i = 0;i < n;i++) { bool fg[5]; fg[0] = 1; fg[1] = 1; ll lf = (i + n - 1) % n; ll lfw = (i + n - 2) % n; ll rt = (i + n + 1) % n; ll rtw = (i + n + 2) % n; if (ch[i] != '?' && (ch[i] == ch[lf]) && (ch[i] == ch[rt])) { f = 0; break; } if (ch[i] != '?') { continue; } if (ch[lf] == ch[rt] && (ch[lf] != '?')) { ll x = ch[lf] - '0'; fg[x] = 0; } if (ch[lf] == ch[lfw] && (ch[lf] != '?')) { ll x = ch[lf] - '0'; fg[x] = 0; } if (ch[rt] == ch[rtw] && (ch[rt] != '?')) { ll x = ch[rt] - '0'; fg[x] = 0; } if ((!fg[0]) && (!fg[1])) { f = 0; break; } if ((fg[0]) && (fg[1])) { if ((ch[rt] != '?')) { ll x = ch[rt] - '0'; fg[x] = 0; } } if (fg[0]) { ch[i] = '0'; } else { ch[i] = '1'; } } if (f) { printf("Yes\n"); } else { printf("No\n"); } } int main() { scanf("%lld",&tt); while(tt) { solve(); tt--; } return 0; }