結果

問題 No.17 2つの地点に泊まりたい
ユーザー mlihua09mlihua09
提出日時 2020-09-13 02:46:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,403 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 123,552 KB
最終ジャッジ日時 2025-01-02 16:06:40
合計ジャッジ時間 42,928 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,403 ms
58,248 KB
testcase_01 AC 1,289 ms
59,268 KB
testcase_02 AC 1,333 ms
59,312 KB
testcase_03 AC 1,289 ms
58,768 KB
testcase_04 AC 1,289 ms
58,320 KB
testcase_05 AC 1,281 ms
59,224 KB
testcase_06 AC 1,288 ms
60,472 KB
testcase_07 AC 1,280 ms
59,252 KB
testcase_08 AC 1,319 ms
59,248 KB
testcase_09 AC 1,349 ms
58,460 KB
testcase_10 AC 1,303 ms
59,076 KB
testcase_11 AC 1,291 ms
60,000 KB
testcase_12 AC 1,299 ms
59,248 KB
testcase_13 AC 1,278 ms
59,624 KB
testcase_14 AC 1,283 ms
59,780 KB
testcase_15 AC 1,292 ms
61,104 KB
testcase_16 AC 1,280 ms
59,412 KB
testcase_17 AC 1,316 ms
58,716 KB
testcase_18 AC 1,316 ms
58,896 KB
testcase_19 AC 1,311 ms
59,344 KB
testcase_20 AC 1,266 ms
61,340 KB
testcase_21 AC 1,302 ms
59,088 KB
testcase_22 AC 1,315 ms
59,280 KB
testcase_23 AC 1,315 ms
59,800 KB
testcase_24 AC 1,301 ms
59,380 KB
testcase_25 AC 1,296 ms
59,752 KB
testcase_26 AC 1,323 ms
123,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

from scipy.sparse.csgraph import shortest_path

import numpy as np

S = np.array([int(input()) for i in range(N)])

D = np.zeros((N, N), dtype=int)

M = int(input())

for i in range(M):
    a, b, c = map(int, input().split())
    
    D[a, b] = c
    D[b, a] = c
    
X = shortest_path(D, directed=False)

from itertools import permutations

ans = 10 ** 9

for i, j in permutations(range(1, N - 1), r=2):
    
    ans = min(ans, S[i] + S[j] + X[0, i] + X[i, j] + X[j, N - 1])
print(int(ans))
0