結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,992 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,592 KB
testcase_03 AC 37 ms
53,164 KB
testcase_04 AC 40 ms
52,928 KB
testcase_05 AC 38 ms
52,244 KB
testcase_06 AC 38 ms
52,648 KB
testcase_07 AC 38 ms
53,212 KB
testcase_08 AC 38 ms
53,052 KB
testcase_09 AC 39 ms
53,080 KB
testcase_10 AC 38 ms
52,568 KB
testcase_11 AC 38 ms
51,944 KB
testcase_12 AC 38 ms
53,552 KB
testcase_13 AC 39 ms
53,344 KB
testcase_14 WA -
testcase_15 AC 38 ms
53,544 KB
testcase_16 AC 38 ms
53,344 KB
testcase_17 AC 38 ms
52,628 KB
testcase_18 AC 38 ms
52,868 KB
testcase_19 AC 39 ms
53,224 KB
testcase_20 AC 38 ms
52,748 KB
testcase_21 WA -
testcase_22 AC 54 ms
64,100 KB
testcase_23 AC 54 ms
63,612 KB
testcase_24 AC 65 ms
70,680 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 68 ms
71,352 KB
testcase_28 WA -
testcase_29 AC 66 ms
69,584 KB
testcase_30 AC 66 ms
71,992 KB
testcase_31 AC 66 ms
71,220 KB
testcase_32 AC 65 ms
70,604 KB
testcase_33 WA -
testcase_34 AC 65 ms
69,800 KB
testcase_35 AC 65 ms
70,424 KB
testcase_36 AC 66 ms
70,076 KB
testcase_37 WA -
testcase_38 AC 67 ms
71,036 KB
testcase_39 AC 66 ms
69,956 KB
testcase_40 WA -
testcase_41 AC 64 ms
68,964 KB
権限があれば一括ダウンロードができます

ソースコード

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 = mo = 0
    for v in g[x]:
        if a[v] < a[x]: le += 1
        if a[v] > a[x]: mo += 1
    if le >= 2 or mo >= 2:
        print("YES")
        exit()
print("NO")
0