結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,309 ms
56,348 KB
testcase_01 AC 914 ms
56,476 KB
testcase_02 AC 924 ms
56,348 KB
testcase_03 AC 934 ms
56,344 KB
testcase_04 AC 925 ms
56,608 KB
testcase_05 AC 900 ms
56,476 KB
testcase_06 AC 895 ms
56,472 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 907 ms
56,608 KB
testcase_10 AC 904 ms
56,476 KB
testcase_11 AC 896 ms
56,472 KB
testcase_12 WA -
testcase_13 AC 924 ms
56,348 KB
testcase_14 WA -
testcase_15 AC 932 ms
56,476 KB
testcase_16 AC 926 ms
56,344 KB
testcase_17 AC 924 ms
56,624 KB
testcase_18 AC 939 ms
56,600 KB
testcase_19 WA -
testcase_20 AC 939 ms
56,476 KB
testcase_21 AC 936 ms
56,220 KB
testcase_22 AC 924 ms
56,344 KB
testcase_23 AC 929 ms
56,604 KB
testcase_24 AC 915 ms
56,340 KB
testcase_25 AC 924 ms
56,216 KB
testcase_26 AC 916 ms
56,596 KB
testcase_27 AC 919 ms
56,476 KB
testcase_28 AC 914 ms
56,728 KB
testcase_29 AC 909 ms
56,132 KB
testcase_30 AC 940 ms
56,472 KB
testcase_31 AC 947 ms
56,600 KB
testcase_32 AC 932 ms
56,476 KB
testcase_33 AC 928 ms
56,476 KB
testcase_34 AC 924 ms
56,472 KB
testcase_35 AC 926 ms
56,348 KB
testcase_36 AC 935 ms
56,348 KB
testcase_37 AC 921 ms
56,228 KB
testcase_38 AC 964 ms
56,480 KB
testcase_39 AC 917 ms
56,224 KB
testcase_40 AC 930 ms
56,480 KB
testcase_41 AC 934 ms
56,476 KB
testcase_42 AC 918 ms
56,484 KB
testcase_43 AC 928 ms
56,988 KB
testcase_44 AC 931 ms
56,480 KB
testcase_45 AC 924 ms
56,476 KB
testcase_46 AC 923 ms
56,600 KB
testcase_47 AC 928 ms
56,348 KB
testcase_48 AC 916 ms
56,340 KB
testcase_49 AC 924 ms
56,936 KB
testcase_50 AC 920 ms
56,480 KB
testcase_51 AC 928 ms
56,572 KB
testcase_52 AC 927 ms
56,740 KB
testcase_53 AC 926 ms
56,732 KB
testcase_54 AC 920 ms
56,480 KB
testcase_55 AC 925 ms
56,600 KB
testcase_56 WA -
testcase_57 AC 926 ms
56,744 KB
testcase_58 AC 916 ms
56,480 KB
testcase_59 AC 916 ms
56,480 KB
testcase_60 AC 952 ms
56,348 KB
testcase_61 AC 924 ms
56,476 KB
testcase_62 AC 931 ms
56,348 KB
testcase_63 AC 932 ms
56,224 KB
testcase_64 AC 921 ms
56,348 KB
testcase_65 AC 930 ms
56,216 KB
testcase_66 AC 949 ms
56,600 KB
testcase_67 AC 944 ms
56,220 KB
testcase_68 AC 936 ms
56,348 KB
testcase_69 AC 922 ms
56,216 KB
testcase_70 AC 921 ms
56,476 KB
testcase_71 WA -
testcase_72 AC 930 ms
56,728 KB
testcase_73 AC 934 ms
56,476 KB
testcase_74 WA -
testcase_75 AC 921 ms
56,728 KB
testcase_76 AC 926 ms
56,612 KB
testcase_77 AC 927 ms
56,608 KB
testcase_78 AC 931 ms
56,476 KB
testcase_79 AC 933 ms
110,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

from scipy.sparse.csgraph import floyd_warshall
from scipy.sparse import csr_matrix

N, M = map(int, input().split())
edges = np.array([tuple(map(int, input().split())) for _ in range(M)])
edges[:, :2] -= 1
matr = csr_matrix((edges[:, 2], (edges[:, 0], edges[:, 1])), shape=(N, N))
way = floyd_warshall(matr)
way = np.where(np.isinf(way), 0, way.astype(np.int64))
print(*way.sum(axis=1), sep='\n')
0