結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 39 ms
52,480 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 39 ms
51,840 KB
testcase_28 AC 39 ms
52,096 KB
testcase_29 WA -
testcase_30 AC 40 ms
52,096 KB
testcase_31 AC 39 ms
52,224 KB
testcase_32 WA -
testcase_33 AC 39 ms
52,188 KB
testcase_34 AC 39 ms
51,968 KB
testcase_35 AC 38 ms
52,480 KB
testcase_36 AC 38 ms
52,608 KB
testcase_37 AC 38 ms
51,968 KB
testcase_38 AC 38 ms
52,608 KB
testcase_39 AC 40 ms
52,224 KB
testcase_40 WA -
testcase_41 AC 40 ms
51,968 KB
testcase_42 AC 39 ms
52,096 KB
testcase_43 AC 38 ms
52,224 KB
testcase_44 AC 37 ms
51,968 KB
testcase_45 WA -
testcase_46 AC 40 ms
52,480 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 = map(int,input().split())

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

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