結果

問題 No.2343 (l+r)/2
ユーザー ShirotsumeShirotsume
提出日時 2023-06-09 23:14:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,018 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 96,164 KB
最終ジャッジ日時 2025-01-02 05:18:18
合計ジャッジ時間 2,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,500 KB
testcase_01 AC 160 ms
78,544 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 72 ms
88,040 KB
testcase_05 AC 60 ms
80,068 KB
testcase_06 AC 60 ms
79,024 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 65 ms
79,240 KB
testcase_11 AC 89 ms
91,556 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 97 ms
96,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random, itertools, heapq, math
from collections import deque, Counter, defaultdict
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()
    a = li()

    dp = [[0, 0], [0, 0]]

    dp[a[0]][0] = 1

    for i in range(1, n):
        e = [[0, 0], [0, 0]]
        for j in range(2):
            e[a[i]][(j + 1) % 2] |= dp[1 - a[i]][j]
            e[a[i]][j] |= dp[a[i]][j]
        e[a[i]][0] |= dp[a[i]][1]
        dp = e
    if dp[0][1] or dp[1][1]:
    	print('Yes')
    	return
    a = a[::-1]
    dp = [[0, 0], [0, 0]]

    dp[a[0]][0] = 1

    for i in range(1, n):
        e = [[0, 0], [0, 0]]
        for j in range(2):
            e[a[i]][(j + 1) % 2] |= dp[1 - a[i]][j]
            e[a[i]][j] |= dp[a[i]][j]
        e[a[i]][0] |= dp[a[i]][1]
        dp = e
    print('Yes' if dp[0][1] or dp[1][1] else 'No')
        

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