結果

問題 No.17 2つの地点に泊まりたい
ユーザー AEnAEn
提出日時 2022-08-24 16:18:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 608 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 74,752 KB
最終ジャッジ日時 2024-10-12 00:51:40
合計ジャッジ時間 3,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 55 ms
62,336 KB
testcase_03 AC 77 ms
71,424 KB
testcase_04 AC 51 ms
61,312 KB
testcase_05 AC 69 ms
68,736 KB
testcase_06 AC 60 ms
66,048 KB
testcase_07 AC 55 ms
63,744 KB
testcase_08 AC 80 ms
74,276 KB
testcase_09 AC 80 ms
73,984 KB
testcase_10 AC 78 ms
74,368 KB
testcase_11 AC 80 ms
74,752 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 55 ms
64,384 KB
testcase_18 AC 69 ms
70,400 KB
testcase_19 AC 69 ms
71,040 KB
testcase_20 AC 55 ms
65,280 KB
testcase_21 AC 47 ms
60,544 KB
testcase_22 AC 73 ms
72,320 KB
testcase_23 AC 63 ms
67,200 KB
testcase_24 AC 71 ms
70,016 KB
testcase_25 AC 44 ms
59,136 KB
testcase_26 AC 71 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [int(input()) for _ in range(N)]
G = [list() for _ in range(N)]
from itertools import permutations

M = int(input())
cost = [[float('inf')]*N for _ in range(N)]
for i in range(N):
    cost[i][i] = 0
for i in range(M):
    A, B, C = map(int, input().split())
    cost[A][B] = C
    cost[B][A] = C

for k in range(N):
    for i in range(N):
        for j in range(N):
            cost[i][j] = min(cost[i][j], cost[i][k]+cost[k][j])

res = float('inf')
for v in permutations(range(1, N-1), 2):
    a, b = v[0], v[1]
    res = min(res, cost[0][a]+cost[a][b]+cost[b][-1]+S[a]+S[b])
print(res)
0