結果

問題 No.1344 Typical Shortest Path Sum
ユーザー GER_chenGER_chen
提出日時 2021-01-26 12:32:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 996 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 77,812 KB
最終ジャッジ日時 2024-06-23 12:26:21
合計ジャッジ時間 7,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,956 KB
testcase_01 AC 37 ms
52,492 KB
testcase_02 AC 37 ms
52,472 KB
testcase_03 AC 80 ms
76,128 KB
testcase_04 AC 59 ms
69,220 KB
testcase_05 AC 37 ms
52,068 KB
testcase_06 AC 36 ms
53,776 KB
testcase_07 AC 38 ms
53,008 KB
testcase_08 AC 37 ms
53,636 KB
testcase_09 AC 39 ms
52,652 KB
testcase_10 AC 36 ms
53,336 KB
testcase_11 AC 37 ms
52,324 KB
testcase_12 AC 37 ms
53,224 KB
testcase_13 AC 36 ms
52,504 KB
testcase_14 AC 38 ms
53,012 KB
testcase_15 AC 37 ms
53,420 KB
testcase_16 AC 108 ms
76,696 KB
testcase_17 AC 38 ms
52,544 KB
testcase_18 AC 37 ms
54,264 KB
testcase_19 AC 37 ms
53,492 KB
testcase_20 AC 36 ms
53,812 KB
testcase_21 AC 37 ms
52,700 KB
testcase_22 AC 37 ms
52,940 KB
testcase_23 AC 38 ms
53,416 KB
testcase_24 AC 37 ms
53,416 KB
testcase_25 AC 36 ms
52,816 KB
testcase_26 AC 37 ms
53,476 KB
testcase_27 AC 37 ms
52,136 KB
testcase_28 AC 38 ms
53,032 KB
testcase_29 AC 37 ms
52,880 KB
testcase_30 AC 37 ms
52,128 KB
testcase_31 AC 36 ms
52,740 KB
testcase_32 AC 36 ms
54,308 KB
testcase_33 AC 36 ms
53,444 KB
testcase_34 AC 36 ms
52,648 KB
testcase_35 AC 36 ms
53,336 KB
testcase_36 AC 37 ms
54,192 KB
testcase_37 AC 36 ms
52,504 KB
testcase_38 AC 36 ms
53,244 KB
testcase_39 AC 37 ms
54,260 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 148 ms
77,268 KB
testcase_44 AC 141 ms
77,260 KB
testcase_45 WA -
testcase_46 AC 144 ms
77,148 KB
testcase_47 AC 149 ms
77,540 KB
testcase_48 WA -
testcase_49 AC 136 ms
77,148 KB
testcase_50 AC 139 ms
77,104 KB
testcase_51 AC 145 ms
77,540 KB
testcase_52 AC 149 ms
77,024 KB
testcase_53 WA -
testcase_54 AC 134 ms
77,220 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 47 ms
60,764 KB
testcase_61 AC 38 ms
53,784 KB
testcase_62 AC 87 ms
76,948 KB
testcase_63 AC 54 ms
65,128 KB
testcase_64 AC 57 ms
66,324 KB
testcase_65 AC 88 ms
77,488 KB
testcase_66 AC 87 ms
77,016 KB
testcase_67 AC 86 ms
77,192 KB
testcase_68 AC 53 ms
64,184 KB
testcase_69 AC 56 ms
65,540 KB
testcase_70 AC 60 ms
68,568 KB
testcase_71 AC 37 ms
52,320 KB
testcase_72 AC 37 ms
53,424 KB
testcase_73 AC 37 ms
52,360 KB
testcase_74 AC 38 ms
54,224 KB
testcase_75 AC 38 ms
52,528 KB
testcase_76 AC 37 ms
52,252 KB
testcase_77 AC 38 ms
53,320 KB
testcase_78 AC 40 ms
53,536 KB
testcase_79 AC 65 ms
70,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def floyd_warshall(n, Edges):
    """
    n: number of vertices
    Edges: set of edges
    """
    sp = [[float('inf')]*n for _ in range(n)]
    for init, end, weight in Edges:
        if sp[init][end] > weight:
            sp[init][end] = weight  #no multi edge
    for i in range(n):
        sp[i][i] = 0
    for i in range(n):
        for j in range(n):
            for k in range(n):
                if sp[i][j] > sp[i][k]+sp[k][j]:
                    sp[i][j] = sp[i][k]+sp[k][j]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                if sp[i][j] > sp[i][k]+sp[k][j]:
                    sp[i][j] = sp[i][k]+sp[k][j]
    return sp

N, M = map(int, input().split())  #N頂点、M辺

#辺集合
Edges = set()
for _ in range(M):
    s, t, d = map(int, input().split())
    Edges.add((s-1, t-1, d))

#到達不可能な場合0にする設定
sp = floyd_warshall(N, Edges)
for i in range(N):
    print(sum(l if l < float('inf') else 0 for l in sp[i]))
0