結果

問題 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,903 ms / 4,000 ms
コード長 542 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 315,264 KB
最終ジャッジ日時 2024-12-14 06:58:32
合計ジャッジ時間 60,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 987 ms
55,640 KB
testcase_01 AC 983 ms
55,616 KB
testcase_02 AC 991 ms
55,740 KB
testcase_03 AC 1,002 ms
55,736 KB
testcase_04 AC 1,003 ms
55,860 KB
testcase_05 AC 990 ms
55,864 KB
testcase_06 AC 1,000 ms
56,112 KB
testcase_07 AC 981 ms
55,612 KB
testcase_08 AC 974 ms
55,484 KB
testcase_09 AC 973 ms
55,476 KB
testcase_10 AC 978 ms
55,472 KB
testcase_11 AC 3,121 ms
278,440 KB
testcase_12 AC 2,548 ms
199,392 KB
testcase_13 AC 3,231 ms
273,824 KB
testcase_14 AC 1,912 ms
145,448 KB
testcase_15 AC 1,768 ms
127,488 KB
testcase_16 AC 3,439 ms
292,508 KB
testcase_17 AC 3,903 ms
314,404 KB
testcase_18 AC 3,882 ms
314,584 KB
testcase_19 AC 3,898 ms
314,168 KB
testcase_20 AC 2,498 ms
176,536 KB
testcase_21 AC 2,540 ms
181,656 KB
testcase_22 AC 1,627 ms
109,328 KB
testcase_23 AC 1,466 ms
97,444 KB
testcase_24 AC 2,983 ms
247,308 KB
testcase_25 AC 3,827 ms
315,264 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