結果

問題 No.629 グラフの中に眠る門松列
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-19 14:13:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 4,000 ms
コード長 530 bytes
コンパイル時間 1,261 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 73,532 KB
最終ジャッジ日時 2024-11-18 08:44:37
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,796 KB
testcase_01 AC 40 ms
52,588 KB
testcase_02 AC 39 ms
54,324 KB
testcase_03 AC 39 ms
52,460 KB
testcase_04 AC 39 ms
53,744 KB
testcase_05 AC 38 ms
52,592 KB
testcase_06 AC 40 ms
53,260 KB
testcase_07 AC 39 ms
53,380 KB
testcase_08 AC 40 ms
52,888 KB
testcase_09 AC 40 ms
52,940 KB
testcase_10 AC 39 ms
52,892 KB
testcase_11 AC 39 ms
52,464 KB
testcase_12 AC 39 ms
52,440 KB
testcase_13 AC 39 ms
53,236 KB
testcase_14 AC 39 ms
53,840 KB
testcase_15 AC 39 ms
53,328 KB
testcase_16 AC 40 ms
54,020 KB
testcase_17 AC 39 ms
53,364 KB
testcase_18 AC 39 ms
52,528 KB
testcase_19 AC 40 ms
52,656 KB
testcase_20 AC 40 ms
53,268 KB
testcase_21 AC 59 ms
65,308 KB
testcase_22 AC 56 ms
63,988 KB
testcase_23 AC 57 ms
63,608 KB
testcase_24 AC 66 ms
70,668 KB
testcase_25 AC 65 ms
70,624 KB
testcase_26 AC 68 ms
71,364 KB
testcase_27 AC 70 ms
72,396 KB
testcase_28 AC 49 ms
57,636 KB
testcase_29 AC 69 ms
71,260 KB
testcase_30 AC 71 ms
72,788 KB
testcase_31 AC 73 ms
72,800 KB
testcase_32 AC 70 ms
72,308 KB
testcase_33 AC 72 ms
73,532 KB
testcase_34 AC 68 ms
71,168 KB
testcase_35 AC 70 ms
71,872 KB
testcase_36 AC 69 ms
72,660 KB
testcase_37 AC 73 ms
73,120 KB
testcase_38 AC 71 ms
71,760 KB
testcase_39 AC 71 ms
71,812 KB
testcase_40 AC 71 ms
71,172 KB
testcase_41 AC 66 ms
71,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
#g = [[] for i in range(n)]
X = [set() for i in range(n)]
import bisect
for i in range(m):
    u, v  = map(int, input().split())
    u, v = u-1, v-1
    X[u].add(A[v])
    X[v].add(A[u])
X = [sorted(list(s)) for s in X]
#print(X)
for i in range(n):
    if len(X[i]) <= 0:
        continue
    j = bisect.bisect_left(X[i], A[i])
    k = bisect.bisect_right(X[i], A[i])
    if j >= 2 or len(X[i])-k >= 2:
        print('YES')
        exit()
else:
    print('NO')
0