結果

問題 No.629 グラフの中に眠る門松列
ユーザー 👑 KazunKazun
提出日時 2021-01-07 18:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 4,000 ms
コード長 571 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,408 KB
最終ジャッジ日時 2024-04-26 10:40:00
合計ジャッジ時間 3,670 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,616 KB
testcase_01 AC 37 ms
53,404 KB
testcase_02 AC 38 ms
53,904 KB
testcase_03 AC 37 ms
52,544 KB
testcase_04 AC 37 ms
52,944 KB
testcase_05 AC 35 ms
53,212 KB
testcase_06 AC 36 ms
52,492 KB
testcase_07 AC 35 ms
53,020 KB
testcase_08 AC 37 ms
53,028 KB
testcase_09 AC 37 ms
53,344 KB
testcase_10 AC 36 ms
52,528 KB
testcase_11 AC 34 ms
52,864 KB
testcase_12 AC 37 ms
52,668 KB
testcase_13 AC 35 ms
53,168 KB
testcase_14 AC 37 ms
53,420 KB
testcase_15 AC 37 ms
53,220 KB
testcase_16 AC 37 ms
54,072 KB
testcase_17 AC 38 ms
52,524 KB
testcase_18 AC 38 ms
53,404 KB
testcase_19 AC 35 ms
53,316 KB
testcase_20 AC 37 ms
52,636 KB
testcase_21 AC 80 ms
75,640 KB
testcase_22 AC 54 ms
63,232 KB
testcase_23 AC 54 ms
63,104 KB
testcase_24 AC 67 ms
70,656 KB
testcase_25 AC 66 ms
70,912 KB
testcase_26 AC 81 ms
76,408 KB
testcase_27 AC 65 ms
70,912 KB
testcase_28 AC 44 ms
54,912 KB
testcase_29 AC 64 ms
69,760 KB
testcase_30 AC 69 ms
70,912 KB
testcase_31 AC 64 ms
70,528 KB
testcase_32 AC 65 ms
70,528 KB
testcase_33 AC 66 ms
70,528 KB
testcase_34 AC 64 ms
70,016 KB
testcase_35 AC 65 ms
69,632 KB
testcase_36 AC 68 ms
70,656 KB
testcase_37 AC 64 ms
70,016 KB
testcase_38 AC 67 ms
72,192 KB
testcase_39 AC 64 ms
70,016 KB
testcase_40 AC 63 ms
68,736 KB
testcase_41 AC 64 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

N,M=map(int,input().split())
A=[0]+list(map(int,input().split()))

Up  =[[] for _ in range(N+1)]
Down=[[] for _ in range(N+1)]

for _ in range(M):
    u,v=map(int,input().split())
    if A[u]>A[v]:
        Up[v].append(u)
        Down[u].append(v)
    elif A[u]<A[v]:
        Up[u].append(v)
        Down[v].append(u)

F=0
for i in range(1,N+1):
    for p,q in combinations(Up[i],r=2):
        if A[p]!=A[q]:
            F=1

    for p,q in combinations(Down[i],r=2):
        if A[p]!=A[q]:
            F=1

print("YES" if F else "NO")
0