結果

問題 No.92 逃走経路
ユーザー ytftytft
提出日時 2022-11-10 09:15:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 99,768 KB
最終ジャッジ日時 2024-07-23 12:17:29
合計ジャッジ時間 12,431 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 564 ms
99,768 KB
testcase_01 AC 510 ms
43,832 KB
testcase_02 AC 516 ms
43,840 KB
testcase_03 AC 512 ms
43,832 KB
testcase_04 AC 524 ms
44,148 KB
testcase_05 AC 517 ms
44,096 KB
testcase_06 AC 521 ms
44,096 KB
testcase_07 AC 514 ms
43,840 KB
testcase_08 AC 522 ms
43,956 KB
testcase_09 AC 518 ms
43,968 KB
testcase_10 AC 523 ms
43,964 KB
testcase_11 AC 521 ms
43,964 KB
testcase_12 AC 520 ms
43,964 KB
testcase_13 WA -
testcase_14 AC 517 ms
43,828 KB
testcase_15 AC 515 ms
44,100 KB
testcase_16 AC 517 ms
43,844 KB
testcase_17 AC 519 ms
43,832 KB
testcase_18 AC 512 ms
44,220 KB
testcase_19 AC 512 ms
43,880 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
ans=[]
for i in range(N):
	if pot[i][0]:
		ans.append(i+1)
print(len(ans))
print(*ans)
0