結果

問題 No.2518 Adjacent Larger
ユーザー 👑 KA37RIKA37RI
提出日時 2023-10-28 00:11:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 926 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 70,432 KB
最終ジャッジ日時 2024-09-25 15:42:40
合計ジャッジ時間 8,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 517 ms
67,464 KB
testcase_17 AC 287 ms
42,964 KB
testcase_18 AC 295 ms
43,492 KB
testcase_19 AC 247 ms
38,296 KB
testcase_20 AC 347 ms
51,512 KB
testcase_21 AC 224 ms
58,276 KB
testcase_22 AC 217 ms
58,404 KB
testcase_23 AC 515 ms
69,536 KB
testcase_24 AC 368 ms
58,936 KB
testcase_25 AC 368 ms
60,956 KB
testcase_26 AC 435 ms
66,344 KB
testcase_27 AC 233 ms
59,044 KB
testcase_28 AC 509 ms
70,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve(n, a):
	larger = [set() for _ in range(n)]
	for i in range(n):
		if a[i] == 0:
			if (i - 1) % n in larger[i]:
				print("contradiction", file=sys.stderr)
				return False
			if (i + 1) % n in larger[i]:
				print("contradiction", file=sys.stderr)
				return False
			larger[(i-1)%n].add(i)
			larger[(i+1)%n].add(i)
		elif a[i] == 2:
			if i in larger[(i-1)%n]:
				print("contradiction", file=sys.stderr)
				return False
			if i in larger[(i+1)%n]:
				print("contradiction", file=sys.stderr)
				return False
			larger[i].add((i - 1) % n)
			larger[i].add((i + 1) % n)
	for i in range(n):
		if a[i] == 1:
			if (i - 1) % n in larger[i]:
				larger[(i+1)%n].add(i)
			if (i + 1) % n in larger[i]:
				larger[(i-1)%n].add(i)
	print(larger, file=sys.stderr)
	return True

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