結果

問題 No.1344 Typical Shortest Path Sum
ユーザー GER_chenGER_chen
提出日時 2021-01-16 13:31:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-05 15:31:11
合計ジャッジ時間 4,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 30 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 30 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 WA -
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 WA -
testcase_32 AC 30 ms
10,624 KB
testcase_33 AC 29 ms
10,624 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 30 ms
10,624 KB
testcase_37 AC 31 ms
10,624 KB
testcase_38 AC 30 ms
10,624 KB
testcase_39 AC 30 ms
10,624 KB
testcase_40 AC 32 ms
10,624 KB
testcase_41 WA -
testcase_42 AC 31 ms
10,752 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 31 ms
10,752 KB
testcase_46 AC 31 ms
10,752 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 WA -
testcase_49 AC 31 ms
10,752 KB
testcase_50 AC 30 ms
10,752 KB
testcase_51 AC 31 ms
10,624 KB
testcase_52 AC 32 ms
10,752 KB
testcase_53 WA -
testcase_54 AC 31 ms
10,752 KB
testcase_55 AC 32 ms
10,624 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 29 ms
10,624 KB
testcase_72 AC 30 ms
10,752 KB
testcase_73 AC 30 ms
10,752 KB
testcase_74 AC 29 ms
10,624 KB
testcase_75 AC 29 ms
10,752 KB
testcase_76 WA -
testcase_77 AC 30 ms
10,624 KB
testcase_78 AC 30 ms
10,752 KB
testcase_79 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki-1344
import heapq
N, M = map(int, input().split())
Edge = [set() for _ in range(N)]
for _ in range(M):
    s, t, d = map(int, input().split())
    s -= 1
    t -= 1
    Edge[s].add((d, t))
    
for i in range(N):
    used = [True]*N
    edgelist = []
    for e in Edge[i]:
        heapq.heappush(edgelist, e)
    used[i] = False
    cost = [0]*N
    while len(edgelist) != 0:
        minedge = heapq.heappop(edgelist)
        if used[minedge[1]]:
            v = minedge[1]
            used[v] = False
            cost[v] = minedge[0]
            for e in Edge[v]:
                if used[e[1]]:
                    heapq.heappush(edgelist, (e[0]+minedge[0], e[1]))
    print(sum(cost))
0