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.
Code (Java):
class Solution { public double largestSumOfAverages(int[] A, int K) { int len = A.length; double[][] dp = new double[len + 1][K + 1]; double[] prefixSum = new double[len + 1]; for (int i = 1; i <= len; i++) { prefixSum[i] = prefixSum[i - 1] + A[i - 1]; // Init dp // dp[i][1] = prefixSum[i] / i; } for (int k = 2; k <= K; k++) { for (int i = k; i <= len; i++) { for (int j = k - 1; j < i; j++ ) { dp[i][k] = Math.max(dp[i][k], dp[j][k - 1] + (prefixSum[i] - prefixSum[j]) / (i - j)); } } } return dp[len][K]; } }
No comments:
Post a Comment