結果

問題 No.807 umg tours
ユーザー yuruhiyayuruhiya
提出日時 2020-09-06 10:50:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,762 ms / 4,000 ms
コード長 586 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 299,320 KB
最終ジャッジ日時 2024-05-06 20:46:48
合計ジャッジ時間 53,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 932 ms
56,528 KB
testcase_01 AC 928 ms
56,388 KB
testcase_02 AC 923 ms
56,516 KB
testcase_03 AC 927 ms
56,656 KB
testcase_04 AC 930 ms
56,392 KB
testcase_05 AC 914 ms
56,404 KB
testcase_06 AC 926 ms
56,648 KB
testcase_07 AC 921 ms
56,656 KB
testcase_08 AC 918 ms
56,400 KB
testcase_09 AC 909 ms
56,264 KB
testcase_10 AC 917 ms
56,396 KB
testcase_11 AC 2,947 ms
262,268 KB
testcase_12 AC 2,339 ms
192,368 KB
testcase_13 AC 3,079 ms
258,960 KB
testcase_14 AC 1,787 ms
140,940 KB
testcase_15 AC 1,629 ms
125,684 KB
testcase_16 AC 3,204 ms
276,192 KB
testcase_17 AC 3,628 ms
298,856 KB
testcase_18 AC 3,712 ms
299,320 KB
testcase_19 AC 3,762 ms
298,808 KB
testcase_20 AC 2,392 ms
175,044 KB
testcase_21 AC 2,564 ms
179,724 KB
testcase_22 AC 1,541 ms
109,220 KB
testcase_23 AC 1,389 ms
98,172 KB
testcase_24 AC 2,855 ms
238,996 KB
testcase_25 AC 3,570 ms
298,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import*
from scipy.sparse import*
from sys import stdin
def solve():
    n,m=map(int,stdin.readline().split())
    e=[]
    for i in range(m):
        a,b,c=map(int,stdin.readline().split())
        a-=1;b-=1
        e.append([a,b,c])
        e.append([a,b+n,0])
        e.append([a+n,b+n,c])
        e.append([b,a,c])
        e.append([b,a+n,0])
        e.append([b+n,a+n,c])
    edge=array(e,int64).T
    graph=csr_matrix((edge[2],edge[:2]),(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])))
solve()
0