結果

問題 No.92 逃走経路
ユーザー hiyokko2hiyokko2
提出日時 2016-07-29 22:26:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 447 ms / 5,000 ms
コード長 416 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-06 20:13:48
合計ジャッジ時間 4,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
11,008 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 423 ms
10,880 KB
testcase_06 AC 293 ms
11,136 KB
testcase_07 AC 299 ms
11,008 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 66 ms
10,752 KB
testcase_10 AC 424 ms
10,880 KB
testcase_11 AC 406 ms
10,880 KB
testcase_12 AC 447 ms
10,880 KB
testcase_13 AC 54 ms
10,880 KB
testcase_14 AC 68 ms
10,880 KB
testcase_15 AC 111 ms
10,880 KB
testcase_16 AC 111 ms
10,880 KB
testcase_17 AC 178 ms
11,008 KB
testcase_18 AC 205 ms
11,136 KB
testcase_19 AC 201 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
G = [[] for _ in range(N + 1)]
for _ in range(M):
	a, b, c = map(int, input().split())
	G[a].append((b, c))
	G[b].append((a, c))
d = list(map(int, input().split()))

kouho = set(range(1, N + 1))
for i in range(K):
	new_kouho = set()
	for j in kouho:
		for (v, c) in G[j]:
			if c == d[i]:
				new_kouho.add(v)
	kouho = new_kouho

print(len(kouho))
print(' '.join(map(str, kouho)))
0