結果

問題 No.629 グラフの中に眠る門松列
ユーザー KozumaKozuma
提出日時 2018-01-16 15:42:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-06 12:51:49
合計ジャッジ時間 9,565 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 26 ms
10,624 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 69 ms
10,752 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 52 ms
10,752 KB
testcase_25 AC 619 ms
10,752 KB
testcase_26 AC 669 ms
10,752 KB
testcase_27 AC 677 ms
10,880 KB
testcase_28 AC 34 ms
10,624 KB
testcase_29 AC 154 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 542 ms
10,880 KB
testcase_32 WA -
testcase_33 AC 720 ms
11,008 KB
testcase_34 AC 79 ms
10,752 KB
testcase_35 AC 243 ms
10,624 KB
testcase_36 WA -
testcase_37 AC 353 ms
10,752 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 138 ms
10,752 KB
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def kadomatu(x, y, z):
	if x != y and y != z and z != x:
		if (y < x and y < z) or (y > x and y > z):
			return True

def check():
	N, M = map(int, input().split())
	a = list(map(int, input().split()))
	u = [0] * M
	v = [0] * M

	for i in range(M):
		u[i], v[i] = map(int, input().split())

	for i in range(M):
		for j in range(i + 1, M):
			if u[j] == v[i]:
				if kadomatu(a[u[i]-1], a[v[i]-1], a[v[j]-1]):
					return True
			if v[j] == v[i]:
				if kadomatu(a[u[i]-1], a[v[i]-1], a[u[i]-1]):
					return True

if check():
	print("YES")
else:
	print("NO")
0