結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,600 KB
testcase_01 MLE -
testcase_02 AC 39 ms
59,556 KB
testcase_03 AC 39 ms
283,540 KB
testcase_04 AC 38 ms
59,680 KB
testcase_05 AC 37 ms
375,996 KB
testcase_06 AC 37 ms
59,428 KB
testcase_07 MLE -
testcase_08 AC 38 ms
59,424 KB
testcase_09 MLE -
testcase_10 AC 37 ms
59,680 KB
testcase_11 MLE -
testcase_12 AC 38 ms
59,428 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 37 ms
52,736 KB
testcase_15 AC 37 ms
52,736 KB
testcase_16 AC 45 ms
59,264 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 39 ms
52,864 KB
testcase_19 AC 41 ms
52,224 KB
testcase_20 AC 40 ms
52,736 KB
testcase_21 AC 40 ms
52,352 KB
testcase_22 AC 38 ms
52,608 KB
testcase_23 AC 39 ms
52,480 KB
testcase_24 AC 38 ms
52,864 KB
testcase_25 AC 37 ms
52,736 KB
testcase_26 AC 38 ms
52,864 KB
testcase_27 AC 38 ms
52,608 KB
testcase_28 AC 40 ms
52,608 KB
testcase_29 AC 37 ms
52,480 KB
testcase_30 AC 39 ms
52,224 KB
testcase_31 AC 40 ms
52,480 KB
testcase_32 AC 39 ms
52,480 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 39 ms
52,620 KB
testcase_35 AC 41 ms
52,864 KB
testcase_36 AC 40 ms
52,352 KB
testcase_37 AC 40 ms
52,224 KB
testcase_38 AC 39 ms
52,352 KB
testcase_39 AC 41 ms
52,224 KB
testcase_40 AC 50 ms
61,056 KB
testcase_41 AC 50 ms
60,928 KB
testcase_42 AC 49 ms
60,416 KB
testcase_43 AC 49 ms
60,672 KB
testcase_44 AC 49 ms
60,160 KB
testcase_45 AC 50 ms
60,672 KB
testcase_46 AC 49 ms
60,160 KB
testcase_47 AC 49 ms
60,416 KB
testcase_48 AC 52 ms
62,080 KB
testcase_49 AC 48 ms
60,416 KB
testcase_50 AC 48 ms
60,416 KB
testcase_51 AC 49 ms
60,672 KB
testcase_52 AC 50 ms
60,672 KB
testcase_53 AC 81 ms
74,368 KB
testcase_54 AC 48 ms
60,416 KB
testcase_55 AC 49 ms
60,672 KB
testcase_56 AC 54 ms
62,464 KB
testcase_57 AC 51 ms
60,928 KB
testcase_58 AC 50 ms
61,568 KB
testcase_59 AC 50 ms
61,440 KB
testcase_60 AC 231 ms
78,700 KB
testcase_61 AC 42 ms
53,248 KB
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 AC 41 ms
52,736 KB
testcase_71 AC 39 ms
52,736 KB
testcase_72 AC 39 ms
52,096 KB
testcase_73 AC 39 ms
52,224 KB
testcase_74 AC 40 ms
52,480 KB
testcase_75 AC 40 ms
52,992 KB
testcase_76 AC 38 ms
52,480 KB
testcase_77 AC 39 ms
52,608 KB
testcase_78 AC 39 ms
52,480 KB
testcase_79 AC 44 ms
67,112 KB
権限があれば一括ダウンロードができます

ソースコード

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