結果

問題 No.1812 Uribo Road
ユーザー ytftytft
提出日時 2022-02-13 16:55:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 503 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 609,868 KB
最終ジャッジ日時 2024-06-29 05:42:46
合計ジャッジ時間 21,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 824 ms
54,764 KB
testcase_01 AC 812 ms
54,124 KB
testcase_02 AC 818 ms
54,500 KB
testcase_03 AC 1,083 ms
75,620 KB
testcase_04 AC 850 ms
54,376 KB
testcase_05 AC 821 ms
54,768 KB
testcase_06 AC 827 ms
54,116 KB
testcase_07 AC 845 ms
54,668 KB
testcase_08 AC 1,199 ms
84,884 KB
testcase_09 AC 1,586 ms
113,648 KB
testcase_10 AC 1,136 ms
79,828 KB
testcase_11 AC 967 ms
65,344 KB
testcase_12 MLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.sparse import csr_matrix
from scipy.sparse.csgraph import shortest_path
N,M,K=map(int,input().split())
R=list(map(int,input().split()))
mask=[0 for i in range(M)]
for i in range(K):
	mask[R[i]-1]=pow(2,i)
weight=[]
begin=[]
end=[]
for i in range(M):
	A,B,C=map(int,input().split())
	for j in range(pow(2,K)):
		begin+=[A-1+j*N,B-1+j*N]
		end+=[B-1+(j|mask[i])*N,A-1+(j|mask[i])*N]
		weight+=[C,C]
graph=csr_matrix((weight,(begin,end)))
print(int(shortest_path(graph,indices=0)[N*pow(2,K)-1]))
0