結果
問題 | No.2283 Prohibit Three Consecutive |
ユーザー | shobonvip |
提出日時 | 2023-04-28 21:39:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 1,293 bytes |
コンパイル時間 | 3,474 ms |
コンパイル使用メモリ | 264,780 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 20:38:24 |
合計ジャッジ時間 | 4,298 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 19 ms
5,248 KB |
testcase_04 | AC | 21 ms
5,248 KB |
testcase_05 | AC | 29 ms
5,248 KB |
testcase_06 | AC | 29 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 9 ms
5,248 KB |
testcase_09 | AC | 8 ms
5,248 KB |
testcase_10 | AC | 8 ms
5,248 KB |
testcase_11 | AC | 8 ms
5,248 KB |
testcase_12 | AC | 19 ms
5,248 KB |
testcase_13 | AC | 40 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; void solve(){ int n; cin >> n; string s; cin >> s; vector<int> a(n); for (int i=0; i<n; i++){ if (s[i] == '0') a[i] = 0; if (s[i] == '1') a[i] = 1; if (s[i] == '?') a[i] = 2; } // first prefix 3 for (int num=1; num<7; num++){ bool mode = true; for (int j=0; j<3; j++){ if (num>>j&1){ if (a[j] == 0) mode = false; }else{ if (a[j] == 1) mode = false; } } if (!mode) continue; vector<bool> dp(8); dp[num] = true; for (int i=3; i<n; i++){ vector<bool> ndp(8); for (int j=0; j<8; j++){ if (!dp[j]) continue; int v = j>>1; if (a[i] == 0){ if (v != 0) ndp[v] = true; } else if (a[i] == 1){ if (v != 3) ndp[v+4] = true; }else{ if (v != 0) ndp[v] = true; if (v != 3) ndp[v+4] = true; } } dp = ndp; } for (int x=1; x<7; x++){ if (dp[x]){ bool mode = true; if ((x>>2&1)==(num>>0&1) && (num>>0&1)==(num>>1&1)) mode = false; if ((x>>1&1)==(x>>2&1) && (x>>2&1)==(num>>0&1)) mode = false; if (mode){ cout << "Yes\n"; return; } } } } cout << "No\n"; return; } int main(){ int t; cin >> t; while(t--) solve(); }