結果

問題 No.17 2つの地点に泊まりたい
ユーザー maspymaspy
提出日時 2020-03-05 10:46:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 920 ms / 5,000 ms
コード長 703 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,264 KB
最終ジャッジ日時 2024-10-14 00:52:07
合計ジャッジ時間 29,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 871 ms
55,748 KB
testcase_01 AC 871 ms
56,016 KB
testcase_02 AC 884 ms
56,260 KB
testcase_03 AC 896 ms
56,008 KB
testcase_04 AC 891 ms
55,752 KB
testcase_05 AC 887 ms
56,004 KB
testcase_06 AC 876 ms
55,876 KB
testcase_07 AC 897 ms
56,000 KB
testcase_08 AC 893 ms
56,264 KB
testcase_09 AC 892 ms
56,132 KB
testcase_10 AC 894 ms
56,000 KB
testcase_11 AC 885 ms
55,744 KB
testcase_12 AC 889 ms
55,724 KB
testcase_13 AC 885 ms
56,256 KB
testcase_14 AC 880 ms
55,616 KB
testcase_15 AC 903 ms
55,744 KB
testcase_16 AC 898 ms
56,140 KB
testcase_17 AC 891 ms
55,748 KB
testcase_18 AC 894 ms
55,748 KB
testcase_19 AC 885 ms
55,720 KB
testcase_20 AC 889 ms
56,000 KB
testcase_21 AC 870 ms
55,876 KB
testcase_22 AC 904 ms
55,620 KB
testcase_23 AC 911 ms
56,008 KB
testcase_24 AC 920 ms
56,052 KB
testcase_25 AC 914 ms
56,000 KB
testcase_26 AC 905 ms
56,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

from scipy.sparse.csgraph import floyd_warshall
import numpy as np

# %%
N = int(readline())
S = np.array([readline() for _ in range(N)], np.int64)
M = int(readline())
ABC = np.array(read().split(), np.int64)
A = ABC[::3]
B = ABC[1::3]
C = ABC[2::3]

# %%
graph = np.full((N, N), np.inf)
graph[A, B] = C


# %%
dist_mat = floyd_warshall(graph, directed=False)

# %%
cost = dist_mat[0, :][:, None] + S[:, None] + dist_mat + S[None, :] + dist_mat[N - 1, :][None, :]
np.fill_diagonal(cost, np.inf)
cost = cost[1:-1, 1:-1]
answer = int(cost.min())
print(answer)
0