結果

問題 No.807 umg tours
ユーザー yuruhiyayuruhiya
提出日時 2020-09-06 10:42:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 425 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 367,632 KB
最終ジャッジ日時 2024-11-29 06:45:31
合計ジャッジ時間 68,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,031 ms
56,376 KB
testcase_01 AC 932 ms
56,432 KB
testcase_02 AC 943 ms
56,692 KB
testcase_03 AC 942 ms
56,564 KB
testcase_04 AC 933 ms
56,564 KB
testcase_05 AC 941 ms
56,828 KB
testcase_06 AC 941 ms
56,748 KB
testcase_07 AC 934 ms
56,564 KB
testcase_08 AC 926 ms
56,436 KB
testcase_09 AC 937 ms
56,312 KB
testcase_10 AC 937 ms
56,324 KB
testcase_11 AC 3,736 ms
277,948 KB
testcase_12 AC 2,873 ms
199,304 KB
testcase_13 AC 3,829 ms
273,116 KB
testcase_14 AC 2,053 ms
144,944 KB
testcase_15 AC 1,913 ms
127,192 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2,896 ms
176,392 KB
testcase_21 AC 2,867 ms
181,748 KB
testcase_22 AC 1,725 ms
108,992 KB
testcase_23 AC 1,538 ms
97,416 KB
testcase_24 AC 3,601 ms
246,652 KB
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import*
from scipy.sparse import*
n,m=map(int,input().split())
e=[]
for i in range(m):
    a,b,c=map(int,input().split())
    for _ in [0,0]:
        e.append([a,b,c])
        e.append([a,b+n,0])
        e.append([a+n,b+n,c])
        a,b=b,a
edge=array(e,int64).T
graph=csr_matrix((edge[2],edge[:2]-1),(n+n,n+n))
dist=csgraph.dijkstra(graph,True,0)
for i in range(n):
    print(int(dist[i]+min(dist[i],dist[i+n])))
0