結果

問題 No.2910 単体ホモロジー入門
ユーザー TakaTaka
提出日時 2023-11-19 11:58:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,179 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 53,892 KB
最終ジャッジ日時 2024-09-26 06:15:36
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,732 KB
testcase_01 AC 33 ms
52,832 KB
testcase_02 AC 35 ms
53,300 KB
testcase_03 AC 36 ms
52,940 KB
testcase_04 AC 37 ms
52,308 KB
testcase_05 AC 36 ms
53,728 KB
testcase_06 AC 37 ms
52,252 KB
testcase_07 AC 36 ms
52,800 KB
testcase_08 AC 38 ms
53,004 KB
testcase_09 AC 37 ms
52,528 KB
testcase_10 AC 35 ms
53,088 KB
testcase_11 AC 36 ms
53,132 KB
testcase_12 AC 37 ms
52,996 KB
testcase_13 AC 36 ms
53,052 KB
testcase_14 AC 37 ms
52,496 KB
testcase_15 AC 36 ms
53,416 KB
testcase_16 AC 38 ms
53,020 KB
testcase_17 AC 38 ms
53,624 KB
testcase_18 AC 38 ms
53,836 KB
testcase_19 AC 37 ms
53,008 KB
testcase_20 AC 37 ms
53,892 KB
testcase_21 AC 37 ms
53,072 KB
testcase_22 AC 37 ms
52,744 KB
testcase_23 AC 38 ms
52,820 KB
testcase_24 AC 37 ms
52,700 KB
testcase_25 AC 37 ms
52,760 KB
testcase_26 AC 37 ms
52,620 KB
testcase_27 AC 38 ms
53,616 KB
testcase_28 AC 37 ms
52,676 KB
testcase_29 AC 37 ms
52,696 KB
testcase_30 AC 37 ms
52,272 KB
testcase_31 AC 36 ms
52,868 KB
testcase_32 AC 36 ms
53,232 KB
testcase_33 AC 36 ms
52,316 KB
testcase_34 AC 36 ms
53,076 KB
testcase_35 AC 36 ms
53,084 KB
testcase_36 AC 37 ms
53,352 KB
testcase_37 AC 38 ms
53,436 KB
testcase_38 AC 37 ms
51,944 KB
testcase_39 AC 38 ms
52,128 KB
testcase_40 WA -
testcase_41 AC 35 ms
53,564 KB
testcase_42 AC 38 ms
52,804 KB
testcase_43 AC 37 ms
52,532 KB
testcase_44 AC 37 ms
52,496 KB
testcase_45 WA -
testcase_46 AC 35 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 閉路検出
def find_cycles_with_paths(graph):
    def dfs(node, parent):
        visited[node] = True
        stack.append(node)  
        for neighbour in graph[node]:
            if not visited[neighbour]:
                if dfs(neighbour, node):
                    return True
            elif parent != neighbour:
                cycle_start_index = stack.index(neighbour)
                cycles.append(stack[cycle_start_index:])
                return True
        stack.pop()
        return False

    visited = [False] * len(graph)
    cycles = []
    stack = []
    for node in range(len(graph)):
        if not visited[node]:
            if dfs(node, -1):
                break
    return cycles
    
# input
N,M = map(int,input().split())
G = [[] for i in range(N)]
for i in range(M):
    A,B = map(int, input().split())
    G[A].append(B)
    G[B].append(A)
V = set(map(int,input().split()))

# 閉路の集合
ans_list = [set(V) for V in find_cycles_with_paths(G)]

# 閉路が存在しないときはNo
if len(ans_list)==0:
    ans = 'No'
# 一致しないものが存在するときはYes
elif V not in ans_list:
    ans = 'Yes'
else:
    ans = 'No'
print(ans)
0