結果

問題 No.92 逃走経路
ユーザー tookunn_1213tookunn_1213
提出日時 2017-05-05 12:43:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 491 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-09-14 08:41:12
合計ジャッジ時間 3,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
11,904 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 475 ms
11,008 KB
testcase_06 AC 104 ms
10,880 KB
testcase_07 AC 103 ms
11,008 KB
testcase_08 AC 38 ms
11,776 KB
testcase_09 AC 75 ms
11,648 KB
testcase_10 AC 479 ms
11,392 KB
testcase_11 AC 439 ms
11,520 KB
testcase_12 AC 491 ms
11,776 KB
testcase_13 AC 59 ms
11,904 KB
testcase_14 AC 64 ms
11,776 KB
testcase_15 AC 83 ms
11,648 KB
testcase_16 AC 77 ms
11,648 KB
testcase_17 AC 93 ms
11,776 KB
testcase_18 AC 92 ms
11,520 KB
testcase_19 AC 87 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
N,M,K = map(int,input().split())
graph = [[] for i in range(N)]
for i in range(M):
	a,b,c = map(int,input().split())
	graph[a-1].append((b-1,c))
	graph[b-1].append((a-1,c))
d = [int(i) for i in input().split()]
used = [[False for j in range(K)]for i in range(N)]
ans = set([])
def dfs(n,c):
	if c == K:
		ans.add(n+1)
		return
	if used[n][c]:
		return
	used[n][c] = True
	for e in graph[n]:
		if e[1] == d[c]:
			dfs(e[0],c+1)
for i in range(N):
	dfs(i,0)
print(len(ans))
print(' '.join(str(i) for i in sorted(list(ans))))
0