結果

問題 No.629 グラフの中に眠る門松列
ユーザー 👑 rin204rin204
提出日時 2022-01-19 21:13:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2024-11-23 14:04:35
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 38 ms
52,212 KB
testcase_13 AC 41 ms
52,608 KB
testcase_14 WA -
testcase_15 AC 36 ms
51,712 KB
testcase_16 AC 37 ms
51,712 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 40 ms
51,712 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 53 ms
62,592 KB
testcase_23 AC 54 ms
62,720 KB
testcase_24 AC 64 ms
69,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 65 ms
70,016 KB
testcase_28 WA -
testcase_29 AC 61 ms
69,264 KB
testcase_30 AC 64 ms
69,888 KB
testcase_31 AC 62 ms
70,016 KB
testcase_32 AC 63 ms
69,888 KB
testcase_33 WA -
testcase_34 AC 63 ms
69,120 KB
testcase_35 AC 62 ms
69,376 KB
testcase_36 AC 64 ms
69,632 KB
testcase_37 WA -
testcase_38 AC 66 ms
71,168 KB
testcase_39 AC 62 ms
69,376 KB
testcase_40 WA -
testcase_41 AC 62 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
up = [set() for _ in range(n)]
down = [set() for _ in range(n)]

for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if A[u] < A[v]:
        up[u].add(v)
        down[v].add(u)
    elif A[u] > A[v]:
        up[v].add(u)
        down[u].add(v)
        
for i in range(n):
    if len(up) >= 2 or len(down) >= 2:
        print("YES")
        break
else:
    print("NO")
0