結果

問題 No.2518 Adjacent Larger
ユーザー ShirotsumeShirotsume
提出日時 2023-09-15 01:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-09-25 05:53:54
合計ジャッジ時間 4,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,680 KB
testcase_01 AC 132 ms
78,016 KB
testcase_02 AC 129 ms
78,160 KB
testcase_03 AC 128 ms
78,268 KB
testcase_04 AC 129 ms
78,200 KB
testcase_05 AC 130 ms
78,156 KB
testcase_06 AC 98 ms
77,488 KB
testcase_07 AC 97 ms
77,640 KB
testcase_08 AC 98 ms
77,252 KB
testcase_09 AC 97 ms
77,524 KB
testcase_10 AC 96 ms
77,596 KB
testcase_11 AC 78 ms
77,148 KB
testcase_12 AC 79 ms
77,208 KB
testcase_13 AC 78 ms
77,012 KB
testcase_14 AC 79 ms
77,244 KB
testcase_15 AC 79 ms
77,064 KB
testcase_16 AC 120 ms
107,400 KB
testcase_17 AC 98 ms
94,432 KB
testcase_18 AC 96 ms
94,676 KB
testcase_19 AC 92 ms
90,836 KB
testcase_20 AC 107 ms
100,496 KB
testcase_21 AC 108 ms
107,204 KB
testcase_22 AC 110 ms
107,348 KB
testcase_23 AC 122 ms
107,404 KB
testcase_24 AC 101 ms
107,648 KB
testcase_25 AC 101 ms
107,512 KB
testcase_26 AC 110 ms
107,376 KB
testcase_27 AC 103 ms
107,324 KB
testcase_28 AC 107 ms
107,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
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 check(n, a):
    d = deque(range(n))

    if 2 not in a:
        return False
    now = a.index(2)
    b = [0] * n
    f = 1
    for i in range(n):
        if a[(now + i) % n] == 0:
            b[(now + i) % n] = d.pop()
            f = 1
        elif a[(now + i) % n] == 2:
            b[(now + i) % n] = d.popleft()
            f = 0
        else:
            if f:
                b[(now + i) % n] = d.pop()
            else:
                b[(now + i) % n] = d.popleft()
    for i in range(n):
        if (b[(i - 1) % n] > b[i]) + (b[(i + 1) % n] > b[i]) == a[i]:
            pass
        else:
            return False
    return True

for _ in range(ii()):
    n = ii()
    a = li()
    if check(n, a):
        print('Yes')
    else:
        print('No')
0