結果

問題 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
コンパイル時間 89 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 314,888 KB
最終ジャッジ日時 2024-05-06 20:42:57
合計ジャッジ時間 60,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 839 ms
56,568 KB
testcase_01 AC 810 ms
56,312 KB
testcase_02 AC 817 ms
56,564 KB
testcase_03 AC 819 ms
56,560 KB
testcase_04 AC 814 ms
56,444 KB
testcase_05 AC 841 ms
56,436 KB
testcase_06 AC 822 ms
56,696 KB
testcase_07 AC 827 ms
56,436 KB
testcase_08 AC 802 ms
56,308 KB
testcase_09 AC 815 ms
56,432 KB
testcase_10 AC 813 ms
56,184 KB
testcase_11 AC 3,469 ms
278,492 KB
testcase_12 AC 2,738 ms
199,440 KB
testcase_13 AC 3,547 ms
272,552 KB
testcase_14 AC 1,948 ms
144,544 KB
testcase_15 AC 1,783 ms
127,560 KB
testcase_16 AC 3,785 ms
292,560 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2,594 ms
176,828 KB
testcase_21 AC 2,593 ms
179,988 KB
testcase_22 AC 1,478 ms
108,844 KB
testcase_23 AC 1,337 ms
97,516 KB
testcase_24 AC 3,218 ms
246,496 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