結果

問題 No.1344 Typical Shortest Path Sum
ユーザー roarisroaris
提出日時 2021-01-24 05:56:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 73,440 KB
最終ジャッジ日時 2025-01-02 09:56:41
合計ジャッジ時間 6,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,204 KB
testcase_01 AC 38 ms
52,964 KB
testcase_02 AC 39 ms
52,348 KB
testcase_03 AC 47 ms
62,420 KB
testcase_04 AC 45 ms
59,504 KB
testcase_05 AC 43 ms
52,648 KB
testcase_06 AC 42 ms
52,612 KB
testcase_07 AC 41 ms
52,692 KB
testcase_08 AC 41 ms
53,684 KB
testcase_09 AC 41 ms
53,888 KB
testcase_10 AC 41 ms
52,896 KB
testcase_11 AC 42 ms
52,968 KB
testcase_12 AC 40 ms
52,936 KB
testcase_13 AC 39 ms
53,076 KB
testcase_14 AC 40 ms
53,580 KB
testcase_15 AC 40 ms
52,568 KB
testcase_16 AC 51 ms
63,336 KB
testcase_17 AC 38 ms
53,192 KB
testcase_18 AC 40 ms
53,508 KB
testcase_19 AC 41 ms
52,736 KB
testcase_20 AC 39 ms
53,696 KB
testcase_21 AC 40 ms
53,252 KB
testcase_22 AC 40 ms
53,688 KB
testcase_23 AC 39 ms
53,264 KB
testcase_24 AC 39 ms
52,824 KB
testcase_25 AC 39 ms
52,404 KB
testcase_26 AC 40 ms
52,816 KB
testcase_27 AC 39 ms
52,728 KB
testcase_28 AC 38 ms
53,028 KB
testcase_29 AC 41 ms
52,272 KB
testcase_30 AC 39 ms
52,716 KB
testcase_31 AC 39 ms
52,740 KB
testcase_32 AC 42 ms
53,224 KB
testcase_33 AC 40 ms
52,684 KB
testcase_34 AC 39 ms
53,092 KB
testcase_35 AC 41 ms
52,452 KB
testcase_36 AC 38 ms
52,888 KB
testcase_37 AC 39 ms
53,948 KB
testcase_38 AC 39 ms
53,228 KB
testcase_39 AC 39 ms
53,952 KB
testcase_40 AC 58 ms
65,300 KB
testcase_41 AC 62 ms
64,732 KB
testcase_42 AC 58 ms
64,476 KB
testcase_43 AC 56 ms
64,732 KB
testcase_44 AC 55 ms
64,404 KB
testcase_45 AC 59 ms
65,372 KB
testcase_46 AC 58 ms
63,732 KB
testcase_47 AC 58 ms
64,476 KB
testcase_48 AC 59 ms
65,304 KB
testcase_49 AC 54 ms
63,084 KB
testcase_50 AC 58 ms
63,408 KB
testcase_51 AC 56 ms
64,288 KB
testcase_52 AC 55 ms
63,680 KB
testcase_53 AC 59 ms
64,596 KB
testcase_54 AC 56 ms
63,848 KB
testcase_55 AC 58 ms
64,224 KB
testcase_56 AC 57 ms
64,944 KB
testcase_57 AC 57 ms
64,288 KB
testcase_58 AC 57 ms
64,516 KB
testcase_59 AC 58 ms
64,400 KB
testcase_60 AC 49 ms
61,576 KB
testcase_61 AC 40 ms
53,896 KB
testcase_62 AC 78 ms
72,508 KB
testcase_63 AC 56 ms
64,612 KB
testcase_64 AC 57 ms
64,272 KB
testcase_65 AC 78 ms
73,440 KB
testcase_66 AC 81 ms
72,368 KB
testcase_67 AC 79 ms
73,184 KB
testcase_68 AC 54 ms
62,716 KB
testcase_69 AC 54 ms
62,620 KB
testcase_70 AC 47 ms
61,224 KB
testcase_71 AC 46 ms
53,372 KB
testcase_72 AC 39 ms
52,484 KB
testcase_73 AC 38 ms
52,720 KB
testcase_74 AC 39 ms
52,756 KB
testcase_75 AC 39 ms
53,268 KB
testcase_76 AC 41 ms
54,016 KB
testcase_77 AC 41 ms
52,472 KB
testcase_78 AC 40 ms
52,584 KB
testcase_79 AC 51 ms
61,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def warshall_floyd():
    for k in range(N):
        for i in range(N):
            for j in range(N):
                if D[i][k]!=10**18 and D[k][j]!=10**18:
                    D[i][j] = min(D[i][j], D[i][k]+D[k][j])

N, M = map(int, input().split())
D = [[10**18]*N for _ in range(N)]

for i in range(N):
    D[i][i] = 0
    
for _ in range(M):
    s, t, d = map(int, input().split())
    D[s-1][t-1] = min(D[s-1][t-1], d)

warshall_floyd()

for i in range(N):
    ans = 0
    
    for j in range(N):
        if D[i][j]!=10**18:
            ans += D[i][j]
    
    print(ans)
0