結果

問題 No.629 グラフの中に眠る門松列
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-25 06:30:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 4,000 ms
コード長 591 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 73,484 KB
最終ジャッジ日時 2024-06-06 05:15:19
合計ジャッジ時間 3,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,408 KB
testcase_01 AC 44 ms
56,872 KB
testcase_02 AC 41 ms
55,948 KB
testcase_03 AC 40 ms
56,656 KB
testcase_04 AC 42 ms
56,364 KB
testcase_05 AC 41 ms
56,312 KB
testcase_06 AC 45 ms
55,548 KB
testcase_07 AC 45 ms
56,432 KB
testcase_08 AC 43 ms
55,548 KB
testcase_09 AC 42 ms
55,928 KB
testcase_10 AC 43 ms
56,924 KB
testcase_11 AC 42 ms
55,692 KB
testcase_12 AC 40 ms
56,384 KB
testcase_13 AC 40 ms
55,636 KB
testcase_14 AC 43 ms
56,724 KB
testcase_15 AC 43 ms
55,520 KB
testcase_16 AC 41 ms
56,072 KB
testcase_17 AC 41 ms
55,120 KB
testcase_18 AC 41 ms
54,988 KB
testcase_19 AC 40 ms
55,980 KB
testcase_20 AC 43 ms
56,260 KB
testcase_21 AC 56 ms
65,900 KB
testcase_22 AC 44 ms
57,672 KB
testcase_23 AC 44 ms
57,964 KB
testcase_24 AC 55 ms
67,288 KB
testcase_25 AC 58 ms
68,792 KB
testcase_26 AC 56 ms
70,240 KB
testcase_27 AC 56 ms
69,696 KB
testcase_28 AC 46 ms
58,544 KB
testcase_29 AC 50 ms
66,564 KB
testcase_30 AC 56 ms
70,984 KB
testcase_31 AC 61 ms
71,884 KB
testcase_32 AC 52 ms
68,636 KB
testcase_33 AC 61 ms
73,484 KB
testcase_34 AC 53 ms
67,160 KB
testcase_35 AC 53 ms
66,460 KB
testcase_36 AC 51 ms
67,688 KB
testcase_37 AC 61 ms
70,232 KB
testcase_38 AC 52 ms
66,084 KB
testcase_39 AC 53 ms
66,168 KB
testcase_40 AC 58 ms
70,432 KB
testcase_41 AC 56 ms
66,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline
N,M = map(int,input().split())
A = list(map(int,input().split()))
e = [[] for _ in range(N)]
for _ in range(M):
    u,v = map(int,input().split())
    u -= 1
    v -= 1
    e[u].append(v)
    e[v].append(u)
    
    
for i in range(N):
    
    a = A[i]
    X = list(set(A[j] for j in e[i]))
    X.sort()
    if len(X)<=1:
        continue
    if X[-2]>a:
        print('YES')
        exit()
    if X[1]<a:
        print('YES')
        exit()
print('NO')
0