結果

問題 No.2518 Adjacent Larger
ユーザー 👑 KA37RIKA37RI
提出日時 2023-10-28 00:40:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,676 KB
最終ジャッジ日時 2024-09-25 15:50:38
合計ジャッジ時間 3,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 152 ms
10,752 KB
testcase_02 AC 154 ms
10,624 KB
testcase_03 AC 152 ms
10,624 KB
testcase_04 AC 151 ms
10,624 KB
testcase_05 AC 152 ms
10,624 KB
testcase_06 AC 57 ms
10,752 KB
testcase_07 AC 57 ms
10,752 KB
testcase_08 AC 57 ms
10,624 KB
testcase_09 AC 57 ms
10,624 KB
testcase_10 AC 56 ms
10,624 KB
testcase_11 AC 48 ms
10,880 KB
testcase_12 AC 52 ms
10,880 KB
testcase_13 AC 49 ms
10,752 KB
testcase_14 AC 48 ms
10,752 KB
testcase_15 AC 50 ms
10,880 KB
testcase_16 AC 128 ms
15,676 KB
testcase_17 AC 85 ms
13,316 KB
testcase_18 AC 86 ms
13,136 KB
testcase_19 AC 78 ms
12,696 KB
testcase_20 AC 100 ms
13,804 KB
testcase_21 AC 85 ms
15,192 KB
testcase_22 AC 86 ms
15,448 KB
testcase_23 AC 129 ms
15,448 KB
testcase_24 AC 120 ms
15,208 KB
testcase_25 AC 126 ms
15,316 KB
testcase_26 AC 126 ms
15,320 KB
testcase_27 AC 92 ms
15,188 KB
testcase_28 AC 130 ms
15,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve(n, a):
	left = [False] * n
	right = [False] * n
	idx2 = -1
	for i in range(n):
		if a[i] == 2:
			idx2 = i
			break
	if idx2 == -1:
		return False
	left[idx2] = True
	right[idx2] = True
	for i in range(idx2 + 1, idx2 + n):
		j = i % n
		left[j] = not right[j-1]
		r = a[j] - left[j]
		if r < 0 or r > 1:
			return False
		else:
			right[j] = (r == 1)
	return left[idx2] ^ right[idx2-1]

t = int(input())
for _ in range(t):
	n = int(input())
	a = [int(x) for x in input().split()]
	print("Yes" if solve(n, a) else "No")
0