結果
問題 | No.92 逃走経路 |
ユーザー | 双六 |
提出日時 | 2020-07-24 19:49:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 237 ms / 5,000 ms |
コード長 | 1,289 bytes |
コンパイル時間 | 325 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 131,184 KB |
最終ジャッジ日時 | 2024-06-25 18:30:24 |
合計ジャッジ時間 | 3,596 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
90,352 KB |
testcase_01 | AC | 41 ms
54,664 KB |
testcase_02 | AC | 41 ms
54,992 KB |
testcase_03 | AC | 42 ms
54,720 KB |
testcase_04 | AC | 43 ms
54,472 KB |
testcase_05 | AC | 180 ms
131,184 KB |
testcase_06 | AC | 62 ms
68,852 KB |
testcase_07 | AC | 60 ms
67,680 KB |
testcase_08 | AC | 50 ms
65,788 KB |
testcase_09 | AC | 108 ms
102,760 KB |
testcase_10 | AC | 187 ms
105,312 KB |
testcase_11 | AC | 191 ms
110,584 KB |
testcase_12 | AC | 237 ms
127,444 KB |
testcase_13 | AC | 99 ms
89,328 KB |
testcase_14 | AC | 110 ms
90,632 KB |
testcase_15 | AC | 126 ms
94,268 KB |
testcase_16 | AC | 123 ms
94,104 KB |
testcase_17 | AC | 111 ms
91,948 KB |
testcase_18 | AC | 98 ms
84,968 KB |
testcase_19 | AC | 88 ms
79,948 KB |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict from collections import deque INF = float("inf") def getlist(): return list(map(int, input().split())) class Graph(object): def __init__(self): self.graph = defaultdict(list) def __len__(self): return len(self.graph) def add_edge(self, a, b): self.graph[a].append(b) class BFS(object): def __init__(self, graph, s, N): self.g = graph.graph self.Q = deque(); self.Q.append(s) self.dist = [INF] * N; self.dist[s] = 0 while self.Q: v = self.Q.popleft() for i in self.g[v]: if self.dist[i] == INF: self.dist[i] = self.dist[v] + 1 self.Q.append(i) #処理内容 def main(): N, M, K = getlist() G = Graph() E = [] for i in range(M): a, b, c = getlist() a -= 1; b -= 1 E.append([a, b, c]) move = getlist() for a, b, c in E: for j in range(K): if move[j] == c: G.add_edge(a + N * j, b + N * (j + 1)) G.add_edge(b + N * j, a + N * (j + 1)) for i in range(N): G.add_edge(N * (K + 1), i) BF = BFS(G, N * (K + 1), (K + 1) * N + 1) dist = BF.dist ans = 0 ansl = [] for i in range(N): if dist[K * N + i] != INF: ans += 1 ansl.append(i + 1) print(ans) print(*ansl) if __name__ == '__main__': main()