結果

問題 No.629 グラフの中に眠る門松列
ユーザー yansi819yansi819
提出日時 2024-05-15 20:09:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 4,000 ms
コード長 526 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 73,512 KB
最終ジャッジ日時 2024-12-20 10:23:39
合計ジャッジ時間 3,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,888 KB
testcase_01 AC 39 ms
53,288 KB
testcase_02 AC 38 ms
53,576 KB
testcase_03 AC 39 ms
52,284 KB
testcase_04 AC 37 ms
52,128 KB
testcase_05 AC 40 ms
52,652 KB
testcase_06 AC 37 ms
52,528 KB
testcase_07 AC 37 ms
53,348 KB
testcase_08 AC 37 ms
52,684 KB
testcase_09 AC 38 ms
53,476 KB
testcase_10 AC 40 ms
52,068 KB
testcase_11 AC 38 ms
53,020 KB
testcase_12 AC 39 ms
52,616 KB
testcase_13 AC 39 ms
52,072 KB
testcase_14 AC 37 ms
52,952 KB
testcase_15 AC 37 ms
53,216 KB
testcase_16 AC 37 ms
52,248 KB
testcase_17 AC 40 ms
52,536 KB
testcase_18 AC 40 ms
53,372 KB
testcase_19 AC 39 ms
53,224 KB
testcase_20 AC 39 ms
53,180 KB
testcase_21 AC 56 ms
62,768 KB
testcase_22 AC 56 ms
63,172 KB
testcase_23 AC 57 ms
62,944 KB
testcase_24 AC 65 ms
70,276 KB
testcase_25 AC 69 ms
72,084 KB
testcase_26 AC 74 ms
73,376 KB
testcase_27 AC 72 ms
73,512 KB
testcase_28 AC 46 ms
55,716 KB
testcase_29 AC 69 ms
70,364 KB
testcase_30 AC 72 ms
71,976 KB
testcase_31 AC 71 ms
71,804 KB
testcase_32 AC 68 ms
72,060 KB
testcase_33 AC 78 ms
73,344 KB
testcase_34 AC 72 ms
71,036 KB
testcase_35 AC 70 ms
71,116 KB
testcase_36 AC 70 ms
71,016 KB
testcase_37 AC 74 ms
71,440 KB
testcase_38 AC 71 ms
70,668 KB
testcase_39 AC 71 ms
69,832 KB
testcase_40 AC 72 ms
71,932 KB
testcase_41 AC 69 ms
69,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
G = [[] for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    G[u].append(v)
    G[v].append(u)

for u in range(N):
    if (len(G[u]) < 2):
        continue
    less = set()
    more = set()
    for v in G[u]:
        if A[v] < A[u]:
            less.add(A[v])
        if A[v] > A[u]:
            more.add(A[v])
    if len(less) >= 2 or len(more) >= 2:
        print("YES")
        break
else:
    print("NO")
0