結果

問題 No.2283 Prohibit Three Consecutive
ユーザー ShirotsumeShirotsume
提出日時 2023-04-28 23:39:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 2,269 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 144,224 KB
最終ジャッジ日時 2024-04-29 00:43:38
合計ジャッジ時間 4,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
53,888 KB
testcase_01 AC 72 ms
64,640 KB
testcase_02 AC 55 ms
61,056 KB
testcase_03 AC 546 ms
144,224 KB
testcase_04 AC 555 ms
124,800 KB
testcase_05 AC 517 ms
79,172 KB
testcase_06 AC 527 ms
79,280 KB
testcase_07 AC 49 ms
54,784 KB
testcase_08 AC 107 ms
86,784 KB
testcase_09 AC 313 ms
139,776 KB
testcase_10 AC 159 ms
96,896 KB
testcase_11 AC 323 ms
139,904 KB
testcase_12 AC 283 ms
78,632 KB
testcase_13 AC 390 ms
79,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

def solve():
    n = ii()
    s = [-1 if v == '?' else int(v) for v in input()]
    p = []
    for i in range(n):
        if s[i] == -1:
            p.append(i)
    p = list(set(p[:2] + p[-2:]))

    m = len(p)

    for bit in range(1 << m):
        a = s[::]
        for i in range(m):
            if 1 & (bit >> i):
                a[p[i]] = 1
            else:
                a[p[i]] = 0
        dp = [[[0] * (n + 1) for _ in range(2)] for _ in range(2)]

        if a[0] == a[1] == -1:
            if a[2] != 0:
                dp[0][0][2] = 1
            dp[0][1][2] = 1
            dp[1][0][2] = 1
            if a[2] != 1:
                dp[1][1][2] = 1
        elif a[0] == -1:
            if not a[1] == a[2] == 0:
                dp[0][a[1]][2] = 1
            if not a[1] == a[2] == 1:
                dp[1][a[1]][2] = 1
        elif a[1] == -1:
            if not a[0] == a[2] == 0:
                dp[a[0]][0][2] = 1
            if not a[0] == a[2] == 1:
                dp[a[0]][1][2] = 1
        else:
            if not a[0] == a[1] == a[2]:
                dp[a[0]][a[1]][2] = 1


        for i in range(2, n):
            for j in range(2):
                for k in range(2):
                    if a[i] == -1:
                        if j == k:
                            dp[k][1 - k][i + 1] |= dp[j][k][i]
                        else:
                            dp[k][0][i + 1] |= dp[j][k][i]
                            dp[k][1][i + 1] |= dp[j][k][i]
                    else:
                        if j == k == a[i]:
                            pass
                        else:
                            dp[k][a[i]][i + 1] |= dp[j][k][i]
        
        for a1 in range(2):
            for a2 in range(2):
                for b1 in range(2):
                    for b2 in range(2):
                        if not((a1 == a2 == b2) or (a1 == b1 == b2)) and dp[a1][a2][2] and dp[b1][b2][n]:
                            print('Yes')
                            return
    print('No')


for _ in range(ii()):
    solve()
0