LeetCode 0813. Largest Sum of Averages Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
0813. Largest Sum of Averages

Description

You are given an integer array nums and an integer k. You can partition the array into at most k non-empty adjacent subarrays. The score of a partition is the sum of the averages of each subarray.

Note that the partition must use every integer in nums, and that the score is not necessarily an integer.

Return the maximum score you can achieve of all the possible partitions. Answers within 10-6 of the actual answer will be accepted.

 

Example 1:

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

Example 2:

Input: nums = [1,2,3,4,5,6,7], k = 4
Output: 20.50000

 

Constraints:

  • 1 <= nums.length <= 100
  • 1 <= nums[i] <= 104
  • 1 <= k <= nums.length

Solutions

Solution 1: Prefix Sum + Memoized Search

We can preprocess to obtain the prefix sum array s, which allows us to quickly get the sum of subarrays.

Next, we design a function dfs(i, k), which represents the maximum sum of averages when dividing the array starting from index i into at most k groups. The answer is dfs(0, k).

The execution logic of the function dfs(i, k) is as follows:

  • When i = n, it means we have traversed to the end of the array, and we return 0.
  • When k = 1, it means there is only one group left, and we return the average value from index i to the end of the array.
  • Otherwise, we enumerate the starting position j of the next group in the interval [i + 1, n), calculate the average value from i to j - 1 as s[j] - s[i]j - i, add the result of dfs(j, k - 1), and take the maximum value of all results.

The time complexity is O(n^2 × k), and the space complexity is O(n × k). Here, n represents the length of the array nums.

PythonJavaC++GoTypeScript
class Solution: def largestSumOfAverages(self, nums: List[int], k: int) -> float: @cache def dfs(i: int, k: int) -> float: if i == n: return 0 if k == 1: return (s[n] - s[i]) / (n - i) ans = 0 for j in range(i + 1, n): ans = max(ans, (s[j] - s[i]) / (j - i) + dfs(j, k - 1)) return ans n = len(nums) s = list(accumulate(nums, initial=0)) return dfs(0, k)(code-box)

Solution 2: Dynamic Programming

We can transform the memoized search from Solution 1 into dynamic programming.

Define f[i][j] to represent the maximum sum of averages when dividing the first i elements of the array nums into at most j groups. The answer is f[n][k].

For f[i][j], we can enumerate the end position h of the previous group, calculate f[h][j-1], add the result of s[i] - s[h]i - h, and take the maximum value of all results.

The time complexity is O(n^2 × k), and the space complexity is O(n × k). Here, n represents the length of the array nums.

PythonJavaC++GoTypeScript
class Solution: def largestSumOfAverages(self, nums: List[int], k: int) -> float: n = len(nums) f = [[0] * (k + 1) for _ in range(n + 1)] s = list(accumulate(nums, initial=0)) for i in range(1, n + 1): f[i][1] = s[i] / i for j in range(2, min(i + 1, k + 1)): for h in range(i): f[i][j] = max(f[i][j], f[h][j - 1] + (s[i] - s[h]) / (i - h)) return f[n][k](code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !