[LeetCode] 689. Maximum Sum of 3 Non-Overlapping Subarrays
2504 단어 자바
In a given array nums of positive integers, find three non-overlapping subarrays with maximum sum.
Each subarray will be of size k, and we want to maximize the sum of all 3*k entries.
Return the result as a list of indices representing the starting position of each interval (0-indexed). If there are multiple answers, return the lexicographically smallest one.
Example:
Input: [1,2,1,2,6,7,5,1], 2
Output: [0, 3, 5]
Explanation: Subarrays [1, 2], [2, 6], [7, 5] correspond to the starting indices [0, 3, 5].
We could have also taken [2, 1], but an answer of [1, 3, 5] would be lexicographically larger.
Note:
nums.length will be between 1 and 20000.
nums[i] will be between 1 and 65535.
k will be between 1 and floor(nums.length / 3).
Solution
class Solution {
public int[] maxSumOfThreeSubarrays(int[] nums, int k) {
//three parts: 0 ~ i-1, i ~ i+k-1, i+k ~ n-1 (i >= k)
// (n-1) - (i+k) + 1 >= k ... so (i <= n-2k)
if (nums == null || nums.length < 3*k) return null;
int n = nums.length;
int[] sum = new int[n+1];
int[] left = new int[n];
int[] right = new int[n];
int[] res = new int[3];
int max = 0;
for (int i = 0; i < n; i++) {
sum[i+1] = sum[i] + nums[i];
}
int leftMax = sum[k]-sum[0];
left[k-1] = 0;
for (int i = k; i < n; i++) {
if (sum[i+1]-sum[i+1-k] > leftMax) {
left[i] = i+1-k;
leftMax = sum[i+1]-sum[i+1-k];
} else {
left[i] = left[i-1];
}
}
int rightMax = sum[n]-sum[n-k];
right[n-k] = n-k;
for (int i = n-1-k; i >= 0; i--) {
if (sum[i+k]-sum[i] > rightMax) {
right[i] = i;
rightMax = sum[i+k]-sum[i];
} else {
right[i] = right[i+1];
}
}
for (int i = k; i <= n-2*k; i++) {
int l = left[i-1];
int r = right[i+k];
int curMax = sum[l+k]-sum[l] + (sum[i+k]-sum[i]) + (sum[r+k]-sum[r]);
if (curMax > max) {
max = curMax;
res[0] = l;
res[1] = i;
res[2] = r;
}
}
return res;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.