代码拉取完成,页面将自动刷新
package com.fishercoder.solutions;
/**
* 1043. Partition Array for Maximum Sum
*
* Given an integer array A, you partition the array into (contiguous) subarrays of length at most K. After partitioning, each subarray has their values changed to become the maximum value of that subarray.
* Return the largest sum of the given array after partitioning.
*
* Example 1:
* Input: A = [1,15,7,9,2,5,10], K = 3
* Output: 84
* Explanation: A becomes [15,15,15,9,10,10,10]
*
* Note:
* 1 <= K <= A.length <= 500
* 0 <= A[i] <= 10^6
* */
public class _1043 {
public static class Solution1 {
/**credit: https://leetcode.com/problems/partition-array-for-maximum-sum/discuss/290863/JavaC%2B%2BPython-DP*/
public int maxSumAfterPartitioning(int[] A, int K) {
int N = A.length;
int[] dp = new int[N];
for (int i = 0; i < N; i++) {
int curMax = 0;
for (int k = 1; k <= K && i - k + 1 >= 0; k++) {
curMax = Math.max(curMax, A[i - k + 1]);
dp[i] = Math.max(dp[i], (i >= k ? dp[i - k] : 0) + curMax * k);
}
}
return dp[N - 1];
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。