結果

問題 No.1344 Typical Shortest Path Sum
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-24 13:49:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-08 06:59:55
合計ジャッジ時間 5,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 32 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 WA -
testcase_15 AC 31 ms
10,880 KB
testcase_16 WA -
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 33 ms
10,880 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 WA -
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 32 ms
10,880 KB
testcase_27 AC 32 ms
10,880 KB
testcase_28 AC 33 ms
10,880 KB
testcase_29 AC 33 ms
10,880 KB
testcase_30 AC 34 ms
10,752 KB
testcase_31 WA -
testcase_32 AC 33 ms
10,880 KB
testcase_33 AC 33 ms
10,752 KB
testcase_34 AC 33 ms
10,752 KB
testcase_35 AC 34 ms
10,752 KB
testcase_36 AC 33 ms
10,752 KB
testcase_37 AC 33 ms
10,880 KB
testcase_38 AC 32 ms
10,880 KB
testcase_39 AC 32 ms
10,880 KB
testcase_40 AC 33 ms
10,880 KB
testcase_41 WA -
testcase_42 AC 33 ms
10,880 KB
testcase_43 AC 33 ms
10,752 KB
testcase_44 AC 33 ms
10,752 KB
testcase_45 AC 34 ms
10,880 KB
testcase_46 AC 33 ms
10,880 KB
testcase_47 AC 33 ms
10,752 KB
testcase_48 WA -
testcase_49 AC 32 ms
10,880 KB
testcase_50 AC 33 ms
10,880 KB
testcase_51 AC 33 ms
10,752 KB
testcase_52 AC 32 ms
10,880 KB
testcase_53 WA -
testcase_54 AC 32 ms
10,880 KB
testcase_55 AC 33 ms
10,752 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 33 ms
10,752 KB
testcase_72 AC 32 ms
10,752 KB
testcase_73 AC 32 ms
10,880 KB
testcase_74 AC 33 ms
10,880 KB
testcase_75 AC 32 ms
10,752 KB
testcase_76 WA -
testcase_77 AC 32 ms
10,880 KB
testcase_78 AC 32 ms
10,752 KB
testcase_79 AC 33 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n,m=map(int,input().split())
g=[[] for _ in range(n)]
for _ in range(m):
    s,t,d=map(int,input().split())
    g[s-1].append((t-1,d))
def dijkstra(s):
    dst=[0]*n
    confirmed=[False]*n
    q=[]
    heapq.heappush(q,(0,s))
    while q:
        now_dst,now_place=heapq.heappop(q)
        if confirmed[now_place]:
            continue
        dst[now_place]=now_dst
        confirmed[now_place]=True
        for to_place,cost in g[now_place]:
            if not confirmed[to_place]:
                to_dst=now_dst+cost
                heapq.heappush(q,(to_dst,to_place))
    return sum(dst)
for i in range(n):
    print(dijkstra(i))
0