1031. Maximum Sum of Two Non-Overlapping Subarrays**
https://leetcode.com/problems/maximum-sum-of-two-non-overlapping-subarrays/
题目描述
Given an array A
of non-negative integers, return the maximum sum of elements in two non-overlapping (contiguous) subarrays, which have lengths L
and M
. (For clarification, the L
-length subarray could occur before or after the M
-length subarray.)
Formally, return the largest V
for which V = (A[i] + A[i+1] + ... + A[i+L-1]) + (A[j] + A[j+1] + ... + A[j+M-1])
and either:
-
0 <= i < i + L - 1 < j < j + M - 1 < A.length
,or -
0 <= j < j + M - 1 < i < i + L - 1 < A.length
.
Example 1:
Example 2:
Example 3:
Note:
-
L >= 1
-
M >= 1
-
L + M <= A.length <= 1000
-
0 <= A[i] <= 1000
C++ 实现 1
思路来自: [Java/C++/Python] O(N)Time O(1) Space
其实上面都是废话, 思路都在代码里.
注意先对 A[0, ... i]
子序列求和, 然后注意 res, maxL, maxM
的初始化.
C++ 实现 2
这个 C++ O(N) buy/sell stock 2 times 也非常精彩, 但我发现还是 C++ 实现 1
中的思路更好推广.