結果

問題 No.1344 Typical Shortest Path Sum
ユーザー roarisroaris
提出日時 2021-01-24 05:56:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 73,900 KB
最終ジャッジ日時 2024-06-10 16:47:49
合計ジャッジ時間 5,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,308 KB
testcase_01 AC 38 ms
53,404 KB
testcase_02 AC 37 ms
53,448 KB
testcase_03 AC 44 ms
60,176 KB
testcase_04 AC 42 ms
59,856 KB
testcase_05 AC 37 ms
52,892 KB
testcase_06 AC 36 ms
53,404 KB
testcase_07 AC 35 ms
52,768 KB
testcase_08 AC 36 ms
52,688 KB
testcase_09 AC 37 ms
52,264 KB
testcase_10 AC 39 ms
52,356 KB
testcase_11 AC 34 ms
52,412 KB
testcase_12 AC 35 ms
52,828 KB
testcase_13 AC 35 ms
53,896 KB
testcase_14 AC 37 ms
53,088 KB
testcase_15 AC 36 ms
52,828 KB
testcase_16 AC 47 ms
62,536 KB
testcase_17 AC 36 ms
52,560 KB
testcase_18 AC 36 ms
52,800 KB
testcase_19 AC 36 ms
52,024 KB
testcase_20 AC 36 ms
53,164 KB
testcase_21 AC 36 ms
52,828 KB
testcase_22 AC 35 ms
53,024 KB
testcase_23 AC 37 ms
52,632 KB
testcase_24 AC 36 ms
52,896 KB
testcase_25 AC 35 ms
53,104 KB
testcase_26 AC 36 ms
52,748 KB
testcase_27 AC 35 ms
53,124 KB
testcase_28 AC 36 ms
52,580 KB
testcase_29 AC 36 ms
52,072 KB
testcase_30 AC 35 ms
52,384 KB
testcase_31 AC 35 ms
53,412 KB
testcase_32 AC 35 ms
53,528 KB
testcase_33 AC 36 ms
53,496 KB
testcase_34 AC 36 ms
52,860 KB
testcase_35 AC 36 ms
52,944 KB
testcase_36 AC 36 ms
52,428 KB
testcase_37 AC 38 ms
52,408 KB
testcase_38 AC 37 ms
53,228 KB
testcase_39 AC 38 ms
52,892 KB
testcase_40 AC 55 ms
64,976 KB
testcase_41 AC 56 ms
63,736 KB
testcase_42 AC 53 ms
63,220 KB
testcase_43 AC 51 ms
63,196 KB
testcase_44 AC 49 ms
62,592 KB
testcase_45 AC 51 ms
63,488 KB
testcase_46 AC 51 ms
63,880 KB
testcase_47 AC 50 ms
63,900 KB
testcase_48 AC 53 ms
64,880 KB
testcase_49 AC 51 ms
63,360 KB
testcase_50 AC 50 ms
63,436 KB
testcase_51 AC 54 ms
63,440 KB
testcase_52 AC 54 ms
64,676 KB
testcase_53 AC 56 ms
64,604 KB
testcase_54 AC 53 ms
62,772 KB
testcase_55 AC 55 ms
64,360 KB
testcase_56 AC 56 ms
63,560 KB
testcase_57 AC 52 ms
63,872 KB
testcase_58 AC 52 ms
64,772 KB
testcase_59 AC 51 ms
63,968 KB
testcase_60 AC 43 ms
60,356 KB
testcase_61 AC 35 ms
52,820 KB
testcase_62 AC 66 ms
72,460 KB
testcase_63 AC 49 ms
62,612 KB
testcase_64 AC 51 ms
63,920 KB
testcase_65 AC 67 ms
73,900 KB
testcase_66 AC 74 ms
73,164 KB
testcase_67 AC 70 ms
72,260 KB
testcase_68 AC 49 ms
63,376 KB
testcase_69 AC 48 ms
62,680 KB
testcase_70 AC 44 ms
60,928 KB
testcase_71 AC 35 ms
53,112 KB
testcase_72 AC 36 ms
53,360 KB
testcase_73 AC 35 ms
52,152 KB
testcase_74 AC 38 ms
53,080 KB
testcase_75 AC 37 ms
53,188 KB
testcase_76 AC 37 ms
53,088 KB
testcase_77 AC 36 ms
52,640 KB
testcase_78 AC 35 ms
52,676 KB
testcase_79 AC 42 ms
61,416 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