結果

問題 No.629 グラフの中に眠る門松列
ユーザー tobusakanatobusakana
提出日時 2022-11-27 16:14:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 4,000 ms
コード長 587 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 66,852 KB
最終ジャッジ日時 2024-10-04 05:32:33
合計ジャッジ時間 3,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,948 KB
testcase_01 AC 40 ms
52,392 KB
testcase_02 AC 38 ms
51,828 KB
testcase_03 AC 38 ms
53,896 KB
testcase_04 AC 38 ms
52,152 KB
testcase_05 AC 38 ms
52,428 KB
testcase_06 AC 38 ms
51,960 KB
testcase_07 AC 38 ms
52,484 KB
testcase_08 AC 38 ms
52,140 KB
testcase_09 AC 39 ms
53,784 KB
testcase_10 AC 46 ms
53,560 KB
testcase_11 AC 38 ms
52,616 KB
testcase_12 AC 37 ms
53,448 KB
testcase_13 AC 37 ms
54,036 KB
testcase_14 AC 38 ms
52,688 KB
testcase_15 AC 37 ms
52,736 KB
testcase_16 AC 38 ms
53,096 KB
testcase_17 AC 37 ms
52,552 KB
testcase_18 AC 38 ms
52,860 KB
testcase_19 AC 47 ms
52,488 KB
testcase_20 AC 37 ms
52,404 KB
testcase_21 AC 41 ms
55,956 KB
testcase_22 AC 40 ms
54,680 KB
testcase_23 AC 41 ms
54,180 KB
testcase_24 AC 45 ms
61,836 KB
testcase_25 AC 50 ms
63,604 KB
testcase_26 AC 53 ms
65,732 KB
testcase_27 AC 51 ms
65,024 KB
testcase_28 AC 38 ms
53,660 KB
testcase_29 AC 46 ms
63,468 KB
testcase_30 AC 51 ms
64,836 KB
testcase_31 AC 52 ms
66,248 KB
testcase_32 AC 51 ms
64,132 KB
testcase_33 AC 54 ms
66,852 KB
testcase_34 AC 49 ms
64,284 KB
testcase_35 AC 49 ms
64,124 KB
testcase_36 AC 50 ms
63,344 KB
testcase_37 AC 50 ms
65,416 KB
testcase_38 AC 47 ms
63,508 KB
testcase_39 AC 47 ms
63,600 KB
testcase_40 AC 52 ms
65,760 KB
testcase_41 AC 47 ms
62,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N,M = map(int,readline().split())
A = list(map(int,readline().split()))
G = [[] for i in range(N)]
for _ in range(M):
    u,v = map(int,readline().split())
    G[u - 1].append(v - 1)
    G[v - 1].append(u - 1)
    
for v in range(N):
    if len(G[v]) < 2:
        continue
    less = set()
    more = set()
    for child in G[v]:
        if A[child] < A[v]:
            less.add(A[child])
        if A[child] > A[v]:
            more.add(A[child])
    if len(less) >= 2 or len(more) >= 2:
        print("YES")
        break
else:
    print("NO")
0