結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,016 ms
56,532 KB
testcase_01 AC 1,002 ms
56,272 KB
testcase_02 AC 998 ms
56,532 KB
testcase_03 AC 1,005 ms
56,796 KB
testcase_04 AC 1,000 ms
56,524 KB
testcase_05 AC 1,024 ms
56,528 KB
testcase_06 AC 996 ms
56,652 KB
testcase_07 AC 1,000 ms
56,648 KB
testcase_08 AC 1,000 ms
56,136 KB
testcase_09 AC 1,000 ms
56,400 KB
testcase_10 AC 1,013 ms
56,396 KB
testcase_11 AC 3,138 ms
262,392 KB
testcase_12 AC 2,557 ms
191,676 KB
testcase_13 AC 3,320 ms
258,764 KB
testcase_14 AC 1,910 ms
141,132 KB
testcase_15 AC 1,749 ms
124,488 KB
testcase_16 AC 3,464 ms
276,028 KB
testcase_17 AC 3,858 ms
298,840 KB
testcase_18 AC 3,862 ms
299,420 KB
testcase_19 AC 3,877 ms
299,160 KB
testcase_20 AC 2,490 ms
174,788 KB
testcase_21 AC 2,539 ms
180,240 KB
testcase_22 AC 1,629 ms
109,444 KB
testcase_23 AC 1,463 ms
97,824 KB
testcase_24 AC 3,016 ms
238,064 KB
testcase_25 AC 3,936 ms
298,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import*
from scipy.sparse import*
from sys import stdin
def solve():
    n,m=map(int,stdin.readline().split())
    e=[[]]*(m*6)
    p=0
    for i in range(m):
        a,b,c=map(int,stdin.readline().split())
        a-=1;b-=1
        e[p]=[a,b,c]
        e[p+1]=[a,b+n,0]
        e[p+2]=[a+n,b+n,c]
        e[p+3]=[b,a,c]
        e[p+4]=[b,a+n,0]
        e[p+5]=[b+n,a+n,c]
        p+=6
    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