結果

問題 No.629 グラフの中に眠る門松列
ユーザー flippergoflippergo
提出日時 2024-10-13 08:16:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 4,000 ms
コード長 611 bytes
コンパイル時間 1,740 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 74,608 KB
最終ジャッジ日時 2024-10-13 08:16:49
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,556 KB
testcase_01 AC 36 ms
52,684 KB
testcase_02 AC 36 ms
52,908 KB
testcase_03 AC 36 ms
52,020 KB
testcase_04 AC 37 ms
52,568 KB
testcase_05 AC 37 ms
53,864 KB
testcase_06 AC 37 ms
52,208 KB
testcase_07 AC 36 ms
52,740 KB
testcase_08 AC 36 ms
51,808 KB
testcase_09 AC 36 ms
51,944 KB
testcase_10 AC 36 ms
53,544 KB
testcase_11 AC 37 ms
52,892 KB
testcase_12 AC 36 ms
53,428 KB
testcase_13 AC 36 ms
52,700 KB
testcase_14 AC 36 ms
52,748 KB
testcase_15 AC 40 ms
52,628 KB
testcase_16 AC 38 ms
52,408 KB
testcase_17 AC 37 ms
52,880 KB
testcase_18 AC 36 ms
52,188 KB
testcase_19 AC 35 ms
52,696 KB
testcase_20 AC 36 ms
51,876 KB
testcase_21 AC 63 ms
65,800 KB
testcase_22 AC 51 ms
62,300 KB
testcase_23 AC 62 ms
65,848 KB
testcase_24 AC 64 ms
70,532 KB
testcase_25 AC 82 ms
74,548 KB
testcase_26 AC 76 ms
73,476 KB
testcase_27 AC 73 ms
74,168 KB
testcase_28 AC 42 ms
54,664 KB
testcase_29 AC 65 ms
71,368 KB
testcase_30 AC 77 ms
74,484 KB
testcase_31 AC 73 ms
74,080 KB
testcase_32 AC 71 ms
72,992 KB
testcase_33 AC 71 ms
74,556 KB
testcase_34 AC 69 ms
73,664 KB
testcase_35 AC 67 ms
72,032 KB
testcase_36 AC 64 ms
71,312 KB
testcase_37 AC 70 ms
74,608 KB
testcase_38 AC 63 ms
70,628 KB
testcase_39 AC 68 ms
73,080 KB
testcase_40 AC 71 ms
73,924 KB
testcase_41 AC 61 ms
70,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A =[0]+list(map(int,input().split()))
G = {i:[] for i in range(1,N+1)}
for _ in range(M):
    u,v = map(int,input().split())
    G[u].append(v)
    G[v].append(u)
ans = "NO"
for i in range(1,N+1):
    if len(G[i])<2:continue
    for j1 in range(len(G[i])-1):
        for j2 in range(j1+1,len(G[i])):
            u = G[i][j1]
            v = G[i][j2]
            if A[i]!=A[u] and A[u]!=A[v] and A[v]!=A[i] and (max(A[i],A[u],A[v])==A[i] or min(A[i],A[u],A[v])==A[i]):
                ans = "YES"
                break
        if ans=="YES":break
    if ans=="YES":break
print(ans)
0