結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,600 KB
testcase_01 AC 35 ms
53,148 KB
testcase_02 AC 35 ms
52,724 KB
testcase_03 AC 35 ms
52,900 KB
testcase_04 AC 35 ms
52,680 KB
testcase_05 WA -
testcase_06 AC 35 ms
53,036 KB
testcase_07 AC 35 ms
52,472 KB
testcase_08 AC 35 ms
53,412 KB
testcase_09 WA -
testcase_10 AC 33 ms
52,884 KB
testcase_11 AC 32 ms
52,756 KB
testcase_12 WA -
testcase_13 AC 32 ms
52,640 KB
testcase_14 WA -
testcase_15 AC 31 ms
53,836 KB
testcase_16 AC 32 ms
52,080 KB
testcase_17 AC 34 ms
52,764 KB
testcase_18 AC 35 ms
52,384 KB
testcase_19 AC 36 ms
52,928 KB
testcase_20 AC 35 ms
52,528 KB
testcase_21 WA -
testcase_22 AC 49 ms
63,472 KB
testcase_23 AC 46 ms
62,652 KB
testcase_24 AC 55 ms
70,532 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 56 ms
71,400 KB
testcase_28 WA -
testcase_29 AC 56 ms
71,092 KB
testcase_30 AC 55 ms
71,232 KB
testcase_31 AC 56 ms
70,684 KB
testcase_32 AC 56 ms
70,848 KB
testcase_33 WA -
testcase_34 AC 55 ms
69,348 KB
testcase_35 AC 55 ms
70,880 KB
testcase_36 AC 56 ms
70,604 KB
testcase_37 WA -
testcase_38 AC 59 ms
70,280 KB
testcase_39 AC 56 ms
70,664 KB
testcase_40 WA -
testcase_41 AC 54 ms
69,164 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] < x: le += 1
        if a[v] > x: mo += 1
    if le >= 2 or mo >= 2:
        print("YES")
        exit()
print("NO")
0