結果

問題 No.1344 Typical Shortest Path Sum
ユーザー nasubi24nasubi24
提出日時 2021-01-16 14:41:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,700 KB
最終ジャッジ日時 2024-05-05 17:14:12
合計ジャッジ時間 6,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 846 ms
56,440 KB
testcase_01 WA -
testcase_02 AC 855 ms
56,636 KB
testcase_03 AC 858 ms
56,052 KB
testcase_04 AC 862 ms
56,440 KB
testcase_05 AC 855 ms
56,300 KB
testcase_06 AC 851 ms
56,056 KB
testcase_07 AC 874 ms
56,564 KB
testcase_08 AC 904 ms
56,432 KB
testcase_09 AC 873 ms
56,308 KB
testcase_10 AC 862 ms
56,696 KB
testcase_11 AC 898 ms
56,308 KB
testcase_12 AC 863 ms
56,184 KB
testcase_13 AC 870 ms
56,052 KB
testcase_14 AC 877 ms
56,688 KB
testcase_15 AC 879 ms
56,308 KB
testcase_16 AC 858 ms
56,436 KB
testcase_17 AC 853 ms
56,308 KB
testcase_18 AC 873 ms
56,436 KB
testcase_19 AC 840 ms
56,304 KB
testcase_20 AC 849 ms
56,052 KB
testcase_21 AC 869 ms
56,688 KB
testcase_22 AC 839 ms
56,304 KB
testcase_23 AC 851 ms
56,508 KB
testcase_24 AC 855 ms
56,312 KB
testcase_25 AC 846 ms
56,304 KB
testcase_26 AC 853 ms
56,436 KB
testcase_27 AC 871 ms
56,308 KB
testcase_28 AC 847 ms
56,432 KB
testcase_29 AC 842 ms
56,436 KB
testcase_30 AC 830 ms
56,632 KB
testcase_31 AC 835 ms
56,304 KB
testcase_32 AC 864 ms
56,568 KB
testcase_33 AC 868 ms
56,304 KB
testcase_34 AC 824 ms
56,060 KB
testcase_35 AC 834 ms
56,308 KB
testcase_36 AC 842 ms
56,308 KB
testcase_37 AC 837 ms
56,440 KB
testcase_38 AC 831 ms
56,560 KB
testcase_39 AC 845 ms
56,304 KB
testcase_40 AC 856 ms
56,312 KB
testcase_41 AC 869 ms
56,308 KB
testcase_42 AC 853 ms
56,432 KB
testcase_43 AC 870 ms
56,432 KB
testcase_44 AC 852 ms
56,184 KB
testcase_45 AC 892 ms
56,692 KB
testcase_46 AC 868 ms
56,432 KB
testcase_47 AC 852 ms
56,628 KB
testcase_48 AC 841 ms
56,700 KB
testcase_49 AC 865 ms
56,184 KB
testcase_50 AC 839 ms
56,432 KB
testcase_51 AC 855 ms
56,696 KB
testcase_52 AC 851 ms
56,432 KB
testcase_53 AC 837 ms
56,564 KB
testcase_54 AC 853 ms
56,308 KB
testcase_55 AC 849 ms
56,440 KB
testcase_56 AC 881 ms
56,692 KB
testcase_57 AC 853 ms
56,688 KB
testcase_58 AC 1,058 ms
56,056 KB
testcase_59 AC 1,247 ms
56,316 KB
testcase_60 AC 827 ms
56,448 KB
testcase_61 AC 820 ms
56,440 KB
testcase_62 AC 830 ms
56,052 KB
testcase_63 AC 819 ms
56,688 KB
testcase_64 AC 823 ms
56,508 KB
testcase_65 AC 830 ms
56,440 KB
testcase_66 AC 841 ms
56,436 KB
testcase_67 AC 963 ms
56,436 KB
testcase_68 AC 838 ms
56,564 KB
testcase_69 AC 838 ms
56,304 KB
testcase_70 AC 852 ms
56,692 KB
testcase_71 AC 839 ms
56,432 KB
testcase_72 AC 835 ms
55,956 KB
testcase_73 AC 833 ms
56,428 KB
testcase_74 AC 833 ms
56,436 KB
testcase_75 AC 832 ms
56,448 KB
testcase_76 AC 835 ms
56,308 KB
testcase_77 AC 837 ms
56,692 KB
testcase_78 AC 842 ms
56,560 KB
testcase_79 AC 835 ms
56,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.sparse.csgraph import shortest_path, johnson
from scipy.sparse import csr_matrix
import numpy as np
n,m=map(int,input().split())
a=[[10**18]*n for _ in range(n)]
for i in range(m):
    s,t,d=map(int,input().split())
    a[s-1][t-1]=min(a[s-1][t-1],d)
a = np.array(a)
ans=shortest_path(a,method="J")
for i in range(n):
    m=0
    for j in range(n):
        if ans[i][j]>=10**15:
            m+=0
        else:
            m+=int(ans[i][j])
    print(m)
0