結果

問題 No.629 グラフの中に眠る門松列
ユーザー convexineqconvexineq
提出日時 2021-03-03 18:29:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 4,000 ms
コード長 439 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 73,356 KB
最終ジャッジ日時 2024-10-03 07:21:48
合計ジャッジ時間 3,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,484 KB
testcase_01 AC 39 ms
52,956 KB
testcase_02 AC 37 ms
53,832 KB
testcase_03 AC 39 ms
52,600 KB
testcase_04 AC 34 ms
52,692 KB
testcase_05 AC 32 ms
52,696 KB
testcase_06 AC 32 ms
51,880 KB
testcase_07 AC 31 ms
53,376 KB
testcase_08 AC 31 ms
52,832 KB
testcase_09 AC 30 ms
52,136 KB
testcase_10 AC 32 ms
53,360 KB
testcase_11 AC 31 ms
53,024 KB
testcase_12 AC 30 ms
53,192 KB
testcase_13 AC 31 ms
52,872 KB
testcase_14 AC 32 ms
53,280 KB
testcase_15 AC 32 ms
52,868 KB
testcase_16 AC 32 ms
52,568 KB
testcase_17 AC 32 ms
52,324 KB
testcase_18 AC 32 ms
52,756 KB
testcase_19 AC 32 ms
53,132 KB
testcase_20 AC 31 ms
52,140 KB
testcase_21 AC 48 ms
65,060 KB
testcase_22 AC 45 ms
63,684 KB
testcase_23 AC 44 ms
62,452 KB
testcase_24 AC 54 ms
69,820 KB
testcase_25 AC 59 ms
71,776 KB
testcase_26 AC 61 ms
73,068 KB
testcase_27 AC 62 ms
73,356 KB
testcase_28 AC 40 ms
55,620 KB
testcase_29 AC 62 ms
71,300 KB
testcase_30 AC 68 ms
72,852 KB
testcase_31 AC 65 ms
72,584 KB
testcase_32 AC 57 ms
70,716 KB
testcase_33 AC 59 ms
72,800 KB
testcase_34 AC 56 ms
70,840 KB
testcase_35 AC 54 ms
71,140 KB
testcase_36 AC 54 ms
70,420 KB
testcase_37 AC 60 ms
71,600 KB
testcase_38 AC 56 ms
71,692 KB
testcase_39 AC 55 ms
69,896 KB
testcase_40 AC 56 ms
70,888 KB
testcase_41 AC 53 ms
69,172 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 = set()
    mo = set()
    for v in g[x]:
        if a[v] < a[x]:
            le.add(a[v])
        if a[v] > a[x]:
            mo.add(a[v])
    if len(le) >= 2 or len(mo) >= 2:
        print("YES")
        exit()
print("NO")
0