結果

問題 No.17 2つの地点に泊まりたい
ユーザー KudeKude
提出日時 2020-09-04 02:46:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 614 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 74,912 KB
最終ジャッジ日時 2024-11-24 13:05:15
合計ジャッジ時間 2,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,676 KB
testcase_01 AC 38 ms
53,620 KB
testcase_02 AC 41 ms
59,668 KB
testcase_03 AC 47 ms
63,560 KB
testcase_04 AC 44 ms
61,800 KB
testcase_05 AC 59 ms
69,188 KB
testcase_06 AC 54 ms
65,708 KB
testcase_07 AC 47 ms
63,296 KB
testcase_08 AC 70 ms
73,876 KB
testcase_09 AC 68 ms
74,912 KB
testcase_10 AC 51 ms
65,480 KB
testcase_11 AC 55 ms
66,620 KB
testcase_12 AC 35 ms
53,348 KB
testcase_13 AC 35 ms
52,464 KB
testcase_14 AC 34 ms
52,828 KB
testcase_15 AC 34 ms
54,112 KB
testcase_16 AC 33 ms
52,628 KB
testcase_17 AC 40 ms
61,072 KB
testcase_18 AC 45 ms
64,004 KB
testcase_19 AC 44 ms
63,528 KB
testcase_20 AC 40 ms
60,616 KB
testcase_21 AC 38 ms
59,436 KB
testcase_22 AC 47 ms
63,972 KB
testcase_23 AC 55 ms
68,688 KB
testcase_24 AC 53 ms
66,332 KB
testcase_25 AC 39 ms
60,532 KB
testcase_26 AC 58 ms
69,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = [int(input()) for _ in range(n)]
INF = 10**18
dist = [[INF] * n for _ in range(n)]
for _ in range(int(input())):
    a, b, c = map(int, input().split())
    dist[a][b] = c
    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])

dp = [INF] * n
for i in range(1, n - 1):
    for j in range(1, n - 1):
        if i == j:
            continue
        dp[j] = min(dp[j], dist[0][i] + s[i] + dist[i][j])
ans = INF
for i in range(1, n - 1):
    ans = min(ans, dp[i] + s[i] + dist[i][n - 1])
print(ans)
0