結果

問題 No.17 2つの地点に泊まりたい
ユーザー dangodango
提出日時 2023-07-08 18:00:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-07-22 13:26:49
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 45 ms
59,264 KB
testcase_03 AC 54 ms
63,360 KB
testcase_04 AC 51 ms
61,056 KB
testcase_05 AC 74 ms
68,864 KB
testcase_06 AC 60 ms
65,280 KB
testcase_07 AC 54 ms
63,488 KB
testcase_08 AC 76 ms
74,240 KB
testcase_09 AC 75 ms
73,784 KB
testcase_10 AC 58 ms
64,000 KB
testcase_11 AC 61 ms
65,792 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 45 ms
59,520 KB
testcase_18 AC 54 ms
62,208 KB
testcase_19 AC 52 ms
62,336 KB
testcase_20 AC 46 ms
60,160 KB
testcase_21 AC 43 ms
58,368 KB
testcase_22 AC 54 ms
62,976 KB
testcase_23 AC 61 ms
66,816 KB
testcase_24 AC 60 ms
65,664 KB
testcase_25 AC 44 ms
58,752 KB
testcase_26 AC 67 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = [int(input()) for _ in range(n)]
m = int(input())
dist = [[1 << 30] * n for _ in range(n)]
for _ in range(m):
    a, b, c = map(int, input().split())
    dist[a][b] = c
    dist[b][a] = c
for i in range(n):
    dist[i][i] = 0
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])
ans = 1 << 30
for i in range(1, n - 1):
    for j in range(1, n - 1):
        if i == j:
            continue
        tmp = dist[0][i] + dist[i][j] + dist[j][-1] + S[i] + S[j]
        ans = min(ans, tmp)
print(ans)
0