結果

問題 No.2910 単体ホモロジー入門
ユーザー TakaTaka
提出日時 2023-11-25 03:19:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,185 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 53,964 KB
最終ジャッジ日時 2024-09-26 10:10:52
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,504 KB
testcase_01 AC 37 ms
52,692 KB
testcase_02 AC 37 ms
53,456 KB
testcase_03 AC 40 ms
53,284 KB
testcase_04 AC 37 ms
52,696 KB
testcase_05 AC 36 ms
52,904 KB
testcase_06 AC 37 ms
53,048 KB
testcase_07 AC 35 ms
52,468 KB
testcase_08 AC 38 ms
52,828 KB
testcase_09 AC 36 ms
53,016 KB
testcase_10 AC 35 ms
53,040 KB
testcase_11 AC 36 ms
52,268 KB
testcase_12 AC 36 ms
52,572 KB
testcase_13 AC 36 ms
52,856 KB
testcase_14 AC 37 ms
52,536 KB
testcase_15 AC 37 ms
53,020 KB
testcase_16 AC 37 ms
53,292 KB
testcase_17 AC 37 ms
52,368 KB
testcase_18 AC 36 ms
53,136 KB
testcase_19 AC 36 ms
52,208 KB
testcase_20 AC 36 ms
52,868 KB
testcase_21 AC 35 ms
53,292 KB
testcase_22 AC 37 ms
52,828 KB
testcase_23 AC 35 ms
53,700 KB
testcase_24 AC 34 ms
53,228 KB
testcase_25 AC 35 ms
53,080 KB
testcase_26 AC 36 ms
53,964 KB
testcase_27 AC 35 ms
53,412 KB
testcase_28 AC 35 ms
52,368 KB
testcase_29 AC 36 ms
52,732 KB
testcase_30 AC 36 ms
53,812 KB
testcase_31 AC 33 ms
53,216 KB
testcase_32 AC 36 ms
52,584 KB
testcase_33 AC 33 ms
53,020 KB
testcase_34 AC 34 ms
53,784 KB
testcase_35 AC 33 ms
53,020 KB
testcase_36 AC 34 ms
53,856 KB
testcase_37 AC 34 ms
52,128 KB
testcase_38 AC 34 ms
53,096 KB
testcase_39 AC 35 ms
53,280 KB
testcase_40 AC 36 ms
52,288 KB
testcase_41 AC 35 ms
52,664 KB
testcase_42 AC 36 ms
53,280 KB
testcase_43 AC 33 ms
53,344 KB
testcase_44 AC 34 ms
53,148 KB
testcase_45 AC 35 ms
52,216 KB
testcase_46 AC 35 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 閉路検出
def find_cycles_with_paths(graph):
    def dfs(node, path):
        if visited[node]:
        	# 閉路の開始点に戻った場合
            if path and node == path[0]:
                unique_cycles.add(tuple(sorted(path)))
            return

        visited[node] = True
        path.append(node)
        for neighbour in graph[node]:
            if not visited[neighbour] or (neighbour == path[0] and len(path) > 2):
                dfs(neighbour, path[:])
        path.pop()
        visited[node] = False

    visited = [False] * len(graph)
    unique_cycles = set()
    for node in range(len(graph)):
        dfs(node, [])

    return [list(cycle) for cycle in unique_cycles]

# input
N, M = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    A, B = map(int, input().split())
    G[A].append(B)
    G[B].append(A)

# v_0,v_1,v_2
V = set(map(int, input().split()))

#
pre_ans_list = [set(cycle) for cycle in find_cycles_with_paths(G)]

# v_0~v_2を取り除いたリスト
ans_list = any(cycle != V for cycle in pre_ans_list)

# ans_listの長さが0なら答えはNo
if not ans_list:
    ans = 'No'
else:
    ans = 'Yes'

print(ans)
0