結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 RE -
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 40 ms
52,352 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 58 ms
61,952 KB
testcase_28 RE -
testcase_29 AC 57 ms
62,336 KB
testcase_30 AC 57 ms
62,336 KB
testcase_31 AC 57 ms
62,336 KB
testcase_32 AC 57 ms
62,336 KB
testcase_33 WA -
testcase_34 AC 56 ms
62,208 KB
testcase_35 AC 56 ms
62,336 KB
testcase_36 AC 57 ms
62,592 KB
testcase_37 WA -
testcase_38 AC 56 ms
62,592 KB
testcase_39 AC 57 ms
61,952 KB
testcase_40 WA -
testcase_41 AC 54 ms
62,464 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(n):
    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