-
Notifications
You must be signed in to change notification settings - Fork 0
/
1031.两个非重叠子数组的最大和.c
73 lines (66 loc) · 1.67 KB
/
1031.两个非重叠子数组的最大和.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* @lc app=leetcode.cn id=1031 lang=c
*
* [1031] 两个非重叠子数组的最大和
*
* https://leetcode-cn.com/problems/maximum-sum-of-two-non-overlapping-subarrays/description/
*
* algorithms
* Medium (53.32%)
* Likes: 61
* Dislikes: 0
* Total Accepted: 2.6K
* Total Submissions: 4.9K
* Testcase Example: '[0,6,5,2,2,5,1,9,4]\n1\n2'
*
* 给出非负整数数组 A ,返回两个非重叠(连续)子数组中元素的最大和,子数组的长度分别为 L 和 M。(这里需要澄清的是,长为 L 的子数组可以出现在长为
* M 的子数组之前或之后。)
*
* 从形式上看,返回最大的 V,而 V = (A[i] + A[i+1] + ... + A[i+L-1]) + (A[j] + A[j+1] + ...
* + A[j+M-1]) 并满足下列条件之一:
*
*
*
*
* 0 <= i < i + L - 1 < j < j + M - 1 < A.length, 或
* 0 <= j < j + M - 1 < i < i + L - 1 < A.length.
*
*
*
*
* 示例 1:
*
* 输入:A = [0,6,5,2,2,5,1,9,4], L = 1, M = 2
* 输出:20
* 解释:子数组的一种选择中,[9] 长度为 1,[6,5] 长度为 2。
*
*
* 示例 2:
*
* 输入:A = [3,8,1,3,2,1,8,9,0], L = 3, M = 2
* 输出:29
* 解释:子数组的一种选择中,[3,8,1] 长度为 3,[8,9] 长度为 2。
*
*
* 示例 3:
*
* 输入:A = [2,1,5,6,0,9,5,0,3,8], L = 4, M = 3
* 输出:31
* 解释:子数组的一种选择中,[5,6,0,9] 长度为 4,[0,3,8] 长度为 3。
*
*
*
* 提示:
*
*
* L >= 1
* M >= 1
* L + M <= A.length <= 1000
* 0 <= A[i] <= 1000
*
*
*/
// @lc code=start
int maxSumTwoNoOverlap(int* A, int ASize, int L, int M){
}
// @lc code=end