結果

問題 No.629 グラフの中に眠る門松列
ユーザー convexineqconvexineq
提出日時 2021-03-03 18:27:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 73,000 KB
最終ジャッジ日時 2024-10-03 07:20:51
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,948 KB
testcase_01 AC 37 ms
52,264 KB
testcase_02 AC 34 ms
52,276 KB
testcase_03 AC 36 ms
53,484 KB
testcase_04 AC 33 ms
52,428 KB
testcase_05 AC 33 ms
52,896 KB
testcase_06 AC 33 ms
52,528 KB
testcase_07 AC 32 ms
52,684 KB
testcase_08 AC 33 ms
53,448 KB
testcase_09 AC 33 ms
53,636 KB
testcase_10 AC 32 ms
52,820 KB
testcase_11 AC 32 ms
52,596 KB
testcase_12 AC 32 ms
52,276 KB
testcase_13 WA -
testcase_14 AC 35 ms
52,840 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 33 ms
53,128 KB
testcase_21 AC 51 ms
64,984 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 54 ms
70,348 KB
testcase_25 AC 57 ms
71,212 KB
testcase_26 AC 60 ms
72,448 KB
testcase_27 WA -
testcase_28 AC 43 ms
56,108 KB
testcase_29 AC 61 ms
71,052 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 59 ms
72,496 KB
testcase_33 AC 61 ms
71,888 KB
testcase_34 AC 58 ms
71,200 KB
testcase_35 AC 59 ms
69,304 KB
testcase_36 WA -
testcase_37 AC 58 ms
72,300 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 58 ms
70,884 KB
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
*a, = map(int,input().split())
g = [[] for _ in range(n)]
for _ in range(m):
    x,y = map(int,input().split())
    g[x-1].append(y-1)
    g[y-1].append(x-1)
for x in range(n):
    le = set()
    mo = set()
    for v in g[x]:
        if a[v] < a[x]:
            if le and a[v] not in le:
                print("YES")
                exit()
            le.add(a[v])
        if a[v] > a[x]:
            if mo and a[v] not in mo:
                print("YES")
                exit()
print("NO")
0