結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,856 KB
testcase_01 AC 38 ms
52,944 KB
testcase_02 AC 33 ms
52,832 KB
testcase_03 AC 34 ms
53,372 KB
testcase_04 AC 33 ms
53,088 KB
testcase_05 AC 33 ms
52,984 KB
testcase_06 AC 34 ms
52,676 KB
testcase_07 AC 36 ms
52,824 KB
testcase_08 AC 34 ms
53,412 KB
testcase_09 AC 36 ms
52,832 KB
testcase_10 AC 33 ms
53,216 KB
testcase_11 AC 36 ms
52,308 KB
testcase_12 AC 34 ms
52,356 KB
testcase_13 AC 33 ms
53,388 KB
testcase_14 AC 39 ms
53,272 KB
testcase_15 AC 35 ms
52,588 KB
testcase_16 AC 35 ms
53,912 KB
testcase_17 AC 33 ms
52,872 KB
testcase_18 AC 33 ms
53,700 KB
testcase_19 AC 33 ms
52,936 KB
testcase_20 AC 32 ms
52,688 KB
testcase_21 AC 50 ms
63,236 KB
testcase_22 AC 49 ms
64,460 KB
testcase_23 AC 51 ms
64,080 KB
testcase_24 AC 62 ms
71,388 KB
testcase_25 AC 67 ms
72,252 KB
testcase_26 AC 67 ms
72,540 KB
testcase_27 AC 62 ms
73,408 KB
testcase_28 AC 40 ms
55,812 KB
testcase_29 AC 58 ms
69,944 KB
testcase_30 AC 63 ms
73,340 KB
testcase_31 AC 63 ms
72,380 KB
testcase_32 AC 58 ms
70,912 KB
testcase_33 AC 71 ms
74,268 KB
testcase_34 AC 62 ms
70,744 KB
testcase_35 AC 57 ms
71,544 KB
testcase_36 AC 60 ms
72,044 KB
testcase_37 AC 62 ms
71,184 KB
testcase_38 AC 58 ms
71,288 KB
testcase_39 AC 59 ms
71,092 KB
testcase_40 AC 64 ms
71,592 KB
testcase_41 AC 56 ms
68,808 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