結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 146 ms
10,624 KB
testcase_02 AC 147 ms
10,624 KB
testcase_03 AC 148 ms
10,624 KB
testcase_04 AC 154 ms
10,624 KB
testcase_05 AC 153 ms
10,624 KB
testcase_06 AC 52 ms
10,496 KB
testcase_07 AC 53 ms
10,624 KB
testcase_08 AC 54 ms
10,496 KB
testcase_09 AC 51 ms
10,624 KB
testcase_10 AC 52 ms
10,624 KB
testcase_11 AC 47 ms
10,752 KB
testcase_12 AC 47 ms
10,752 KB
testcase_13 AC 45 ms
10,752 KB
testcase_14 AC 45 ms
10,752 KB
testcase_15 AC 47 ms
10,752 KB
testcase_16 AC 123 ms
15,256 KB
testcase_17 AC 80 ms
13,192 KB
testcase_18 AC 84 ms
13,340 KB
testcase_19 AC 81 ms
12,708 KB
testcase_20 AC 101 ms
13,936 KB
testcase_21 AC 81 ms
15,196 KB
testcase_22 AC 85 ms
15,160 KB
testcase_23 AC 124 ms
15,328 KB
testcase_24 AC 116 ms
15,092 KB
testcase_25 AC 120 ms
15,324 KB
testcase_26 AC 121 ms
15,204 KB
testcase_27 AC 91 ms
15,328 KB
testcase_28 AC 125 ms
15,328 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] and not right[idx2-1] or not left[idx2] and 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