leetcode 813. Largest Sum of Averages

本文介绍了解决LeetCode上第813题“分组最大平均和”的方法。该问题要求将一列数字分成最多K个相邻的非空组,并计算这些组的平均数之和的最大值。文章提供了使用动态规划解决此问题的Python代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

leetcode 813. Largest Sum of Averages


原题地址:https://leetcode.com/problems/largest-sum-of-averages/

题目

We partition a row of numbers A into at most K adjacent (non-empty) groups, then our score is the sum of the average of each group. What is the largest score we can achieve?

Note that our partition must use every number in A, and that scores are not necessarily integers.

Example:
Input: 
A = [9,1,2,3,9]
K = 3
Output: 20
Explanation: 
The best choice is to partition A into [9], [1, 2, 3], [9]. The answer is 9 + (1 + 2 + 3) / 3 + 9 = 20.
We could have also partitioned A into [9, 1], [2], [3, 9], for example.
That partition would lead to a score of 5 + 2 + 6 = 13, which is worse.

Note:

  • 1 <= A.length <= 100.
  • 1 <= A[i] <= 10000.
  • 1 <= K <= A.length.
  • Answers within 10^-6 of the correct answer will be accepted as correct.

python代码

class Solution:
    def largestSumOfAverages(self, A, K):
        """
        :type A: List[int]
        :type K: int
        :rtype: float
        """
        out = dict()

        def dp(length, groups):

            if (length, groups) in out: 
                return out[(length, groups)]

            if groups == 1:
                out[(length, groups)] = sum(A[:length]) / length
                return out[(length, groups)]

            temp = 0
            out[length, groups] = 0

            for i in range(length - 1, 0, -1):
                temp += A[i]
                out[(length, groups)] = max(out[(length, groups)], dp(i, groups - 1) + temp / (length - i))

            return out[(length, groups)]

        return dp(len(A), K)


版权声明:转载注明 http://blog.csdn.net/birdreamer/article/details/79850052

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值