結果
問題 | No.92 逃走経路 |
ユーザー | tnoda_ |
提出日時 | 2015-08-09 19:27:44 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 670 bytes |
コンパイル時間 | 116 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 24,008 KB |
最終ジャッジ日時 | 2024-07-18 06:13:59 |
合計ジャッジ時間 | 12,509 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
N, M, K = map(int, raw_input().strip().split()) abcs = [list(map(int, raw_input().strip().split())) for i in range(M)] ds = map(int, raw_input().strip().split()) D = [[set() for j in range(N+1)] for i in range(N+1)] for abc in abcs: a, b, c = abc D[a][b].add(c) D[b][a].add(c) def dfs(s, lst): if not lst: return [s] return [x for t in range(N+1) if lst[0] in D[s][t] for x in dfs(t, lst[1:])] ss = set(j for i in range(N+1) for j in range(N+1) if ds[0] in D[i][j]) ans = sorted(set(z for s in ss for z in dfs(s, ds[1:]))) L = len(ans) print(L) if L == 0: print(ans[0]) else: print(' '.join(map(str, ans)))