-
Notifications
You must be signed in to change notification settings - Fork 0
/
2321-maximum-score-of-spliced-array.cpp
114 lines (106 loc) · 3.5 KB
/
2321-maximum-score-of-spliced-array.cpp
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
//给你两个下标从 0 开始的整数数组 nums1 和 nums2 ,长度都是 n 。
//
// 你可以选择两个整数 left 和 right ,其中 0 <= left <= right < n ,接着 交换 两个子数组 nums1[left...
//right] 和 nums2[left...right] 。
//
//
// 例如,设 nums1 = [1,2,3,4,5] 和 nums2 = [11,12,13,14,15] ,整数选择 left = 1 和 right =
//2,那么 nums1 会变为 [1,12,13,4,5] 而 nums2 会变为 [11,2,3,14,15] 。
//
//
// 你可以选择执行上述操作 一次 或不执行任何操作。
//
// 数组的 分数 取 sum(nums1) 和 sum(nums2) 中的最大值,其中 sum(arr) 是数组 arr 中所有元素之和。
//
// 返回 可能的最大分数 。
//
// 子数组 是数组中连续的一个元素序列。arr[left...right] 表示子数组包含 nums 中下标 left 和 right 之间的元素(含 下标
//left 和 right 对应元素)。
//
//
//
// 示例 1:
//
//
//输入:nums1 = [60,60,60], nums2 = [10,90,10]
//输出:210
//解释:选择 left = 1 和 right = 1 ,得到 nums1 = [60,90,60] 和 nums2 = [10,60,10] 。
//分数为 max(sum(nums1), sum(nums2)) = max(210, 80) = 210 。
//
// 示例 2:
//
//
//输入:nums1 = [20,40,20,70,30], nums2 = [50,20,50,40,20]
//输出:220
//解释:选择 left = 3 和 right = 4 ,得到 nums1 = [20,40,20,40,20] 和 nums2 = [50,20,50,70
//,30] 。
//分数为 max(sum(nums1), sum(nums2)) = max(140, 220) = 220 。
//
//
// 示例 3:
//
//
//输入:nums1 = [7,11,13], nums2 = [1,1,1]
//输出:31
//解释:选择不交换任何子数组。
//分数为 max(sum(nums1), sum(nums2)) = max(31, 3) = 31 。
//
//
//
//
// 提示:
//
//
// n == nums1.length == nums2.length
// 1 <= n <= 10⁵
// 1 <= nums1[i], nums2[i] <= 10⁴
//
//
// Related Topics 数组 动态规划 👍 35 👎 0
#include "headers.h"
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public:
int maxDiff(vector<int> &nums1, vector<int> &nums2) {
int n = nums1.size();
// 做差后,等价于算最大子数组和
vector<int> dp(n, nums2[0] - nums1[0]);
// 1. dp[i] = 选中 i 的最大子数组和
// 2. dp[i] = max(dp[i-1] + diff[i], diff[i]);
// 3. 初始化
// res = dp[0] = diff[0]
int res = nums2[0] - nums1[0];
for (int i = 1; i < n; ++i) {
int diff = nums2[i] - nums1[i];
dp[i] = max(dp[i - 1] + diff, diff);
res = max(res, dp[i]);
}
return res;
}
int sum(vector<int> &nums) {
int res = 0;
for (auto i: nums) {
res += i;
}
return res;
}
int maximumsSplicedArray(vector<int> &nums1, vector<int> &nums2) {
// 用 nums2 对 nums1 做差,然后算差值的最大值,加到 num1 的和上
// 然后反过来再算一次,求两次计算的最大值即可
return max(maxDiff(nums1, nums2) + sum(nums1), maxDiff(nums2, nums1) + sum(nums2));
}
};
//leetcode submit region end(Prohibit modification and deletion)
int main() {
Solution s;
vector<int> arr1 = {60, 60, 60};
vector<int> arr2 = {10, 90, 10};
cout << s.maximumsSplicedArray(arr1, arr2) << endl;
cout << s.maximumsSplicedArray(arr2, arr1) << endl;
assert(210 == s.maximumsSplicedArray(arr1, arr2));
assert(210 == s.maximumsSplicedArray(arr1, arr2));
arr1 = {3, 4, 5, 1, 1, 1, 3, 4, 5, 1, 1, 1};
arr2 = {1, 1, 1, 3, 4, 5, 1, 1, 1, 3, 4, 5};
cout << s.maximumsSplicedArray(arr1, arr2) << endl;
assert(39 == s.maximumsSplicedArray(arr1, arr2));
}