結果

問題 No.92 逃走経路
ユーザー ytftytft
提出日時 2022-11-10 09:18:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 663 ms / 5,000 ms
コード長 460 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 99,264 KB
最終ジャッジ日時 2024-07-23 12:20:42
合計ジャッジ時間 14,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 663 ms
99,264 KB
testcase_01 AC 509 ms
44,088 KB
testcase_02 AC 508 ms
43,580 KB
testcase_03 AC 502 ms
43,972 KB
testcase_04 AC 504 ms
43,584 KB
testcase_05 AC 517 ms
43,580 KB
testcase_06 AC 509 ms
43,588 KB
testcase_07 AC 514 ms
44,092 KB
testcase_08 AC 620 ms
43,680 KB
testcase_09 AC 628 ms
43,708 KB
testcase_10 AC 558 ms
44,100 KB
testcase_11 AC 577 ms
43,960 KB
testcase_12 AC 633 ms
43,584 KB
testcase_13 AC 628 ms
44,220 KB
testcase_14 AC 622 ms
43,492 KB
testcase_15 AC 626 ms
43,960 KB
testcase_16 AC 622 ms
43,964 KB
testcase_17 AC 622 ms
44,216 KB
testcase_18 AC 560 ms
43,968 KB
testcase_19 AC 527 ms
43,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np
input=lambda:sys.stdin.readline().rstrip()
N,M,K=map(int,input().split())
mat={}
for i in range(M):
	a,b,c=map(int,input().split())
	if not c in mat:
		mat[c]=np.zeros((N,N))
	mat[c][a-1][b-1]=1
	mat[c][b-1][a-1]=1
D=list(map(int,input().split()))
pot=np.ones((N,1))
for i in D:
	pot=mat[i]@pot
	for i in range(N):
		pot[i][0]=min(1,pot[i][0])
ans=[]
for i in range(N):
	if pot[i][0]:
		ans.append(i+1)
print(len(ans))
print(*ans)
0