結果

問題 No.92 逃走経路
ユーザー tnoda_tnoda_
提出日時 2015-08-09 19:43:43
言語 Python2
(2.7.18)
結果
AC  
実行時間 192 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-07-18 06:14:55
合計ジャッジ時間 2,257 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
6,528 KB
testcase_01 AC 9 ms
6,400 KB
testcase_02 AC 8 ms
6,272 KB
testcase_03 AC 9 ms
6,272 KB
testcase_04 AC 9 ms
6,272 KB
testcase_05 AC 191 ms
6,528 KB
testcase_06 AC 113 ms
6,400 KB
testcase_07 AC 114 ms
6,528 KB
testcase_08 AC 12 ms
6,528 KB
testcase_09 AC 28 ms
6,528 KB
testcase_10 AC 186 ms
6,400 KB
testcase_11 AC 178 ms
6,528 KB
testcase_12 AC 192 ms
6,528 KB
testcase_13 AC 21 ms
6,272 KB
testcase_14 AC 28 ms
6,272 KB
testcase_15 AC 45 ms
6,400 KB
testcase_16 AC 46 ms
6,528 KB
testcase_17 AC 70 ms
6,528 KB
testcase_18 AC 78 ms
6,528 KB
testcase_19 AC 77 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, raw_input().strip().split())
E = [[] for i in range(N+1)]
for i in range(M):
    a, b, c = map(int, raw_input().strip().split())
    E[a].append((b, c))
    E[b].append((a, c))
ds = map(int, raw_input().strip().split())
ans = range(N+1)
while ds:
    ans = set(t for s in ans for (t, c) in E[s] if c == ds[0])
    ds = ds[1:]

L = len(ans)
print(L)
if L == 0:
    print(ans[0])
else:
    print(' '.join(map(str, ans)))
0