結果

問題 No.629 グラフの中に眠る門松列
ユーザー yansi819yansi819
提出日時 2024-05-15 20:04:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 74,432 KB
最終ジャッジ日時 2024-05-15 20:04:22
合計ジャッジ時間 3,804 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
53,484 KB
testcase_02 AC 36 ms
53,144 KB
testcase_03 AC 36 ms
53,764 KB
testcase_04 AC 36 ms
52,672 KB
testcase_05 AC 36 ms
53,136 KB
testcase_06 AC 35 ms
53,320 KB
testcase_07 AC 33 ms
52,340 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,820 KB
testcase_10 AC 34 ms
52,332 KB
testcase_11 AC 35 ms
52,768 KB
testcase_12 AC 36 ms
53,008 KB
testcase_13 AC 34 ms
52,072 KB
testcase_14 WA -
testcase_15 AC 35 ms
52,540 KB
testcase_16 AC 37 ms
52,868 KB
testcase_17 AC 35 ms
53,500 KB
testcase_18 AC 34 ms
52,136 KB
testcase_19 AC 34 ms
52,444 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 73 ms
63,532 KB
testcase_23 AC 47 ms
63,912 KB
testcase_24 AC 58 ms
71,224 KB
testcase_25 AC 79 ms
74,432 KB
testcase_26 AC 74 ms
73,836 KB
testcase_27 AC 60 ms
71,648 KB
testcase_28 WA -
testcase_29 AC 59 ms
70,272 KB
testcase_30 AC 60 ms
71,900 KB
testcase_31 AC 59 ms
72,932 KB
testcase_32 AC 60 ms
72,216 KB
testcase_33 WA -
testcase_34 AC 58 ms
70,184 KB
testcase_35 AC 58 ms
71,736 KB
testcase_36 AC 59 ms
71,976 KB
testcase_37 WA -
testcase_38 AC 71 ms
71,232 KB
testcase_39 AC 60 ms
70,248 KB
testcase_40 WA -
testcase_41 AC 58 ms
70,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
G = [[]] * 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