結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 915 ms
55,476 KB
testcase_01 AC 913 ms
55,620 KB
testcase_02 AC 932 ms
55,484 KB
testcase_03 AC 932 ms
55,736 KB
testcase_04 AC 925 ms
55,728 KB
testcase_05 AC 930 ms
55,736 KB
testcase_06 AC 933 ms
55,604 KB
testcase_07 AC 923 ms
55,736 KB
testcase_08 AC 926 ms
55,216 KB
testcase_09 AC 927 ms
55,476 KB
testcase_10 AC 924 ms
55,220 KB
testcase_11 AC 3,070 ms
278,188 KB
testcase_12 AC 2,629 ms
199,364 KB
testcase_13 AC 3,108 ms
272,740 KB
testcase_14 AC 1,769 ms
145,352 KB
testcase_15 AC 1,636 ms
127,364 KB
testcase_16 AC 3,267 ms
292,532 KB
testcase_17 AC 3,633 ms
314,284 KB
testcase_18 AC 3,665 ms
314,036 KB
testcase_19 AC 3,742 ms
314,404 KB
testcase_20 AC 2,353 ms
176,520 KB
testcase_21 AC 2,496 ms
181,032 KB
testcase_22 AC 1,579 ms
109,176 KB
testcase_23 AC 1,486 ms
97,408 KB
testcase_24 AC 3,053 ms
246,280 KB
testcase_25 AC 3,593 ms
314,200 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())
        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])))
solve()
0