結果

問題 No.2518 Adjacent Larger
ユーザー StanMarshStanMarsh
提出日時 2023-10-28 01:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 106,512 KB
最終ジャッジ日時 2024-09-25 15:56:08
合計ジャッジ時間 4,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,804 KB
testcase_01 AC 131 ms
78,284 KB
testcase_02 AC 131 ms
78,220 KB
testcase_03 AC 138 ms
77,948 KB
testcase_04 AC 134 ms
78,256 KB
testcase_05 AC 130 ms
77,860 KB
testcase_06 AC 96 ms
77,156 KB
testcase_07 AC 95 ms
77,532 KB
testcase_08 AC 96 ms
77,328 KB
testcase_09 AC 95 ms
77,140 KB
testcase_10 AC 94 ms
77,196 KB
testcase_11 AC 76 ms
76,720 KB
testcase_12 AC 75 ms
77,116 KB
testcase_13 AC 76 ms
77,024 KB
testcase_14 AC 76 ms
76,840 KB
testcase_15 AC 76 ms
76,860 KB
testcase_16 AC 116 ms
106,100 KB
testcase_17 AC 87 ms
89,100 KB
testcase_18 AC 84 ms
89,568 KB
testcase_19 AC 82 ms
87,480 KB
testcase_20 AC 98 ms
96,768 KB
testcase_21 AC 102 ms
106,156 KB
testcase_22 AC 103 ms
106,116 KB
testcase_23 AC 118 ms
106,512 KB
testcase_24 AC 99 ms
102,044 KB
testcase_25 AC 97 ms
103,624 KB
testcase_26 AC 102 ms
103,468 KB
testcase_27 AC 96 ms
106,372 KB
testcase_28 AC 106 ms
106,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 抄的
# 思路:随便找一个 2 的位置,循环往后移动n,确定每个位置与其后面位置大小的相关性,然后和 a 进行检查
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 solve():
    n = ii()
    a = li()
    if 2 not in a:
        return 'No'
    p = a.index(2)
    
    d = [None] * n
    for i in range(p, p + n):
        i %= n
        to = None
        if a[i] == 2:
            to = '>'
        if a[i] == 0:
            to = '<'
        if a[i] == 1:
            to = d[(i - 1) % n]
        d[i] = to
    for i in range(n):
        if a[i] != (d[(i - 1) % n] == '<') + (d[i % n] == '>'):
            return 'No'
    return 'Yes'

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