結果

問題 No.629 グラフの中に眠る門松列
ユーザー yansi819yansi819
提出日時 2024-05-15 19:04:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 75,784 KB
最終ジャッジ日時 2024-05-15 19:04:46
合計ジャッジ時間 7,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
60,792 KB
testcase_01 AC 34 ms
53,344 KB
testcase_02 AC 37 ms
53,416 KB
testcase_03 AC 35 ms
53,332 KB
testcase_04 AC 34 ms
52,284 KB
testcase_05 AC 33 ms
53,356 KB
testcase_06 AC 35 ms
52,572 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 34 ms
52,344 KB
testcase_10 AC 34 ms
52,988 KB
testcase_11 AC 35 ms
53,972 KB
testcase_12 AC 35 ms
52,124 KB
testcase_13 AC 39 ms
53,104 KB
testcase_14 WA -
testcase_15 AC 34 ms
52,616 KB
testcase_16 AC 34 ms
53,608 KB
testcase_17 AC 36 ms
53,256 KB
testcase_18 AC 34 ms
53,388 KB
testcase_19 AC 33 ms
53,244 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 56 ms
68,836 KB
testcase_23 AC 128 ms
75,784 KB
testcase_24 AC 58 ms
71,428 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(i, l):
    if len(l) == 3:
        if (l[1] == max(l) or l[1] == min(l)) and l[0] != l[1] and l[1] != l[2] and l[2] != l[0]:
            print("YES")
            exit()
        return
    for v in G[i]:
        l.append(A[v])
        dfs(v, l)
        l.pop()

N, M = map(int, input().split())
A = list(map(int, input().split()))
G = [[]] * N
for _ in range(M):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    G[u].append(v)
    G[v].append(u)

for i in range(N):
    l = [A[i]]
    dfs(i, l)

print("NO")
0