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:
Note:
1 <= K <= A.length <= 500
0 <= A[i] <= 10^6
Last updated
Was this helpful?