結果

問題 No.1344 Typical Shortest Path Sum
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2021-01-16 16:09:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 654 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 458,604 KB
最終ジャッジ日時 2024-05-05 19:02:09
合計ジャッジ時間 7,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 42 ms
52,864 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 43 ms
51,968 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 40 ms
52,864 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 47 ms
59,648 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 41 ms
52,480 KB
testcase_19 AC 42 ms
52,608 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 44 ms
52,480 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 38 ms
52,352 KB
testcase_24 AC 38 ms
52,608 KB
testcase_25 AC 40 ms
52,224 KB
testcase_26 AC 40 ms
52,352 KB
testcase_27 AC 39 ms
52,352 KB
testcase_28 AC 41 ms
52,352 KB
testcase_29 AC 40 ms
52,096 KB
testcase_30 AC 41 ms
52,352 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 40 ms
52,608 KB
testcase_33 AC 40 ms
52,352 KB
testcase_34 AC 39 ms
52,480 KB
testcase_35 AC 44 ms
52,480 KB
testcase_36 AC 43 ms
52,224 KB
testcase_37 AC 44 ms
52,480 KB
testcase_38 AC 39 ms
52,864 KB
testcase_39 AC 40 ms
52,736 KB
testcase_40 AC 53 ms
60,544 KB
testcase_41 AC 53 ms
60,928 KB
testcase_42 AC 52 ms
60,416 KB
testcase_43 AC 52 ms
60,288 KB
testcase_44 AC 51 ms
60,160 KB
testcase_45 AC 54 ms
60,928 KB
testcase_46 AC 52 ms
60,288 KB
testcase_47 AC 52 ms
60,544 KB
testcase_48 AC 56 ms
61,568 KB
testcase_49 AC 52 ms
60,288 KB
testcase_50 AC 49 ms
60,288 KB
testcase_51 AC 53 ms
60,672 KB
testcase_52 AC 51 ms
60,160 KB
testcase_53 AC 84 ms
73,984 KB
testcase_54 AC 50 ms
60,416 KB
testcase_55 AC 49 ms
60,288 KB
testcase_56 AC 55 ms
61,824 KB
testcase_57 AC 53 ms
61,056 KB
testcase_58 AC 54 ms
61,184 KB
testcase_59 AC 54 ms
61,184 KB
testcase_60 AC 226 ms
78,488 KB
testcase_61 AC 42 ms
53,632 KB
testcase_62 TLE -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
L=[{}for i in range(N+1)]

for i in range(M):
    a,b,c=map(int,input().split())
    if b in L[a]:
        L[a][b] = min(L[a][b],c)
    else:
        L[a][b] = c
#print(L)

import heapq

for i in range(1,N+1):
    dist=[10**20 for i in range(N+1)]
    s=i
    Q=[(0,s)]
    heapq.heapify(Q)
    while len(Q)>0:
        d,p=heapq.heappop(Q)
        if dist[p]>d:
            dist[p]=d
            for k,v in L[p].items():
                if dist[k]>(v+d):
                    heapq.heappush(Q,(v+d,k))
    ans=0
    for i in dist[1:]:
        if i==10**20:
            continue
        else:
            ans+=i
    print(ans)
0