結果

問題 No.2283 Prohibit Three Consecutive
ユーザー JlyfishJlyfish
提出日時 2023-05-05 13:46:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 1,928 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 201,592 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 10:04:57
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 9 ms
6,944 KB
testcase_06 AC 9 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 8 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int N = 100010;

int n;
bool dp[N][2][2];
char s[N];

void Solution() {
    cin >> n >> (s + 1);
    if (n <= 2) {
        cout << "Yes\n";
        return;
    }

    bool ans = false;
    for (int l = 0; l < 2; l++) {
        if (s[1] != '?' && s[1] - '0' != l) continue;
        for (int r = 0; r < 2; r++) {
            if (s[2] != '?' && s[2] - '0' != r) continue;
            for (int i = 2; i <= n; i++) {
                for (int j = 0; j < 2; j++) {
                    for (int k = 0; k < 2; k++) {
                        dp[i][j][k] = false;
                    }
                }
            }
            dp[2][l][r] = true;
            for (int i = 3; i <= n; i++) {
                for (int p = 0; p < 2; p++) {
                    // dp[i - 1][p][j] -> dp[i][j][k]
                    for (int j = 0; j < 2; j++) {
                        auto upd = [&](int k) {
                            if (j == p && j == k) return;
                            dp[i][j][k] |= dp[i - 1][p][j];
                        };
                        if (s[i] == '?') {
                            for (int k = 0; k < 2; k++) upd(k);
                        } else {
                            upd(s[i] - '0');
                        }
                    }
                }
            }

            for (int i = 0; i < 2; i++) {
                for (int j = 0; j < 2; j++) {
                    if (!dp[n][i][j]) continue;
                    ans |= (!(i == j && j == l) && !(j == l && l == r));
                }
            }
        }
    }
    cout << (ans ? "Yes" : "No") << '\n';
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    
    for (int i = 0; i < 2; i++) {
        for (int j = 0; j < 2; j++) {
            dp[0][i][j] = true;
        }
    }
    
    int testCase;
    cin >> testCase;
    while (testCase--) Solution();
    return 0;
}
0