結果

問題 No.629 グラフの中に眠る門松列
ユーザー 👑 rin204rin204
提出日時 2022-01-19 21:13:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 465 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-05-02 19:58:25
合計ジャッジ時間 4,206 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 RE -
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 47 ms
51,712 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 44 ms
51,968 KB
testcase_11 AC 45 ms
51,712 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
testcase_15 AC 44 ms
51,968 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 AC 43 ms
52,224 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 49 ms
52,736 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 65 ms
62,208 KB
testcase_28 RE -
testcase_29 AC 67 ms
62,208 KB
testcase_30 AC 63 ms
62,464 KB
testcase_31 AC 62 ms
62,336 KB
testcase_32 AC 66 ms
62,336 KB
testcase_33 WA -
testcase_34 AC 64 ms
62,080 KB
testcase_35 AC 64 ms
62,208 KB
testcase_36 AC 65 ms
62,208 KB
testcase_37 WA -
testcase_38 AC 65 ms
62,336 KB
testcase_39 AC 61 ms
62,080 KB
testcase_40 WA -
testcase_41 AC 65 ms
62,208 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