結果

問題 No.17 2つの地点に泊まりたい
ユーザー nagitaosunagitaosu
提出日時 2020-03-13 13:37:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-22 00:21:37
合計ジャッジ時間 3,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 37 ms
10,624 KB
testcase_03 AC 131 ms
10,752 KB
testcase_04 AC 39 ms
10,624 KB
testcase_05 AC 88 ms
10,624 KB
testcase_06 AC 64 ms
10,752 KB
testcase_07 AC 55 ms
10,752 KB
testcase_08 AC 127 ms
10,624 KB
testcase_09 AC 129 ms
10,752 KB
testcase_10 AC 112 ms
10,752 KB
testcase_11 AC 131 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 41 ms
10,624 KB
testcase_18 AC 104 ms
10,752 KB
testcase_19 AC 96 ms
10,752 KB
testcase_20 AC 38 ms
10,624 KB
testcase_21 AC 33 ms
10,624 KB
testcase_22 AC 115 ms
10,624 KB
testcase_23 AC 84 ms
10,752 KB
testcase_24 AC 102 ms
10,752 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 115 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline
INF = 10**9

n = int(input())
s = [0] * n
for i in range(n):
    s[i] = int(input())
m = int(input())
dist = [[INF] * n for _ in range(n)]
for i in range(n):
    dist[i][i] = 0
for _ in range(m):
    a, b, c = map(int, input().split())
    dist[a][b] = dist[b][a] = c
for k in range(n):
    for i in range(n):
        for j in range(n):
            dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j])
            dist[j][i] = dist[i][j]

ans = INF
for i in range(1, n-1):
    for j in range(i+1, n-1):
        cost = s[i] + s[j]
        pat1 = dist[0][i] + dist[i][j] + dist[j][n-1] + cost
        pat2 = dist[0][j] + dist[j][i] + dist[i][n-1] + cost
        ans = min(ans, pat1, pat2)
print(ans)
0