結果

問題 No.629 グラフの中に眠る門松列
ユーザー roarisroaris
提出日時 2019-09-01 20:25:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 4,000 ms
コード長 613 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-29 05:48:40
合計ジャッジ時間 3,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 34 ms
51,968 KB
testcase_10 AC 34 ms
52,224 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 34 ms
51,840 KB
testcase_13 AC 34 ms
52,352 KB
testcase_14 AC 35 ms
51,712 KB
testcase_15 AC 34 ms
51,712 KB
testcase_16 AC 33 ms
51,968 KB
testcase_17 AC 34 ms
51,968 KB
testcase_18 AC 34 ms
52,352 KB
testcase_19 AC 35 ms
52,224 KB
testcase_20 AC 34 ms
51,584 KB
testcase_21 AC 117 ms
76,032 KB
testcase_22 AC 37 ms
53,888 KB
testcase_23 AC 69 ms
76,016 KB
testcase_24 AC 45 ms
62,336 KB
testcase_25 AC 102 ms
76,160 KB
testcase_26 AC 95 ms
75,904 KB
testcase_27 AC 58 ms
74,240 KB
testcase_28 AC 43 ms
60,416 KB
testcase_29 AC 51 ms
66,432 KB
testcase_30 AC 60 ms
76,544 KB
testcase_31 AC 63 ms
76,160 KB
testcase_32 AC 52 ms
68,224 KB
testcase_33 AC 62 ms
76,288 KB
testcase_34 AC 52 ms
68,480 KB
testcase_35 AC 53 ms
67,584 KB
testcase_36 AC 51 ms
65,664 KB
testcase_37 AC 60 ms
76,020 KB
testcase_38 AC 48 ms
64,896 KB
testcase_39 AC 51 ms
67,200 KB
testcase_40 AC 56 ms
70,016 KB
testcase_41 AC 52 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
a = list(map(int, input().split()))
adj_list = [[] for _ in range(N)]

for _ in range(M):
    ui, vi = map(int, input().split())
    adj_list[ui-1].append(vi-1)
    adj_list[vi-1].append(ui-1)

for i in range(N):
    for j in range(len(adj_list[i])):
        for k in range(len(adj_list[i])):
            if j == k:
                continue
            l = [a[adj_list[i][j]], a[i], a[adj_list[i][k]]]
            
            if len(set(l)) == 3 and a[i] in [max(l), min(l)]:
                print('YES')
                exit()

print('NO')
0