結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 43 ms
52,096 KB
testcase_06 AC 44 ms
51,968 KB
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 44 ms
52,096 KB
testcase_10 AC 43 ms
51,968 KB
testcase_11 AC 43 ms
52,480 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 42 ms
52,480 KB
testcase_15 AC 43 ms
52,096 KB
testcase_16 AC 43 ms
51,840 KB
testcase_17 AC 43 ms
52,096 KB
testcase_18 AC 43 ms
51,968 KB
testcase_19 AC 43 ms
51,968 KB
testcase_20 AC 43 ms
52,096 KB
testcase_21 AC 96 ms
75,520 KB
testcase_22 AC 64 ms
62,976 KB
testcase_23 AC 65 ms
63,104 KB
testcase_24 AC 80 ms
70,656 KB
testcase_25 AC 81 ms
70,784 KB
testcase_26 AC 99 ms
76,160 KB
testcase_27 AC 78 ms
70,528 KB
testcase_28 AC 51 ms
55,296 KB
testcase_29 AC 77 ms
69,760 KB
testcase_30 AC 78 ms
70,528 KB
testcase_31 AC 78 ms
70,528 KB
testcase_32 AC 78 ms
70,528 KB
testcase_33 AC 79 ms
70,272 KB
testcase_34 AC 76 ms
69,504 KB
testcase_35 AC 76 ms
69,632 KB
testcase_36 AC 77 ms
70,528 KB
testcase_37 AC 77 ms
69,504 KB
testcase_38 AC 81 ms
71,552 KB
testcase_39 AC 78 ms
69,504 KB
testcase_40 AC 76 ms
69,248 KB
testcase_41 AC 75 ms
68,992 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