题目描述
给你一个整型数组 nums
,在数组中找出由三个数组成的最大乘积,并输出这个乘积。
示例 1:
输入:nums = [1,2,3]
输出:6
示例 2:
输入:nums = [1,2,3,4]
输出:24
示例 3:
输入:nums = [-1,-2,-3]
输出:-6
提示:
3 <= nums.length <= 104
-1000 <= nums[i] <= 1000
解法
方法一:排序 + 分类讨论
我们先对数组 $\textit{nums}$ 进行排序,接下来分两种情况讨论:
- 如果 $\textit{nums}$ 中全是非负数或者全是非正数,那么答案即为最后三个数的乘积,即 $\textit{nums}[n-1] \times \textit{nums}[n-2] \times \textit{nums}[n-3]$;
- 如果 $\textit{nums}$ 中既有正数也有负数,那么答案可能是两个最小负数和一个最大整数的乘积,即 $\textit{nums}[n-1] \times \textit{nums}[0] \times \textit{nums}[1]$;也可能是最后三个数的乘积,即 $\textit{nums}[n-1] \times \textit{nums}[n-2] \times \textit{nums}[n-3]$。
最后返回两种情况的最大值即可。
时间复杂度 $O(n \times \log n)$,空间复杂度 $O(\log n)$。其中 $n$ 为数组 $\textit{nums}$ 的长度。
方法二:一次遍历
我们可以不用对数组进行排序,而是维护五个变量,其中 $\textit{mi1}$ 和 $\textit{mi2}$ 表示数组中最小的两个数,而 $\textit{mx1}$, $\textit{mx2}$ 和 $\textit{mx3}$ 表示数组中最大的三个数。
最后返回 $\max(\textit{mi1} \times \textit{mi2} \times \textit{mx1}, \textit{mx1} \times \textit{mx2} \times \textit{mx3})$ 即可。
时间复杂度 $O(n)$,其中 $n$ 为数组长度。空间复杂度 $O(1)$。
| class Solution:
def maximumProduct(self, nums: List[int]) -> int:
top3 = nlargest(3, nums)
bottom2 = nlargest(2, nums, key=lambda x: -x)
return max(top3[0] * top3[1] * top3[2], top3[0] * bottom2[0] * bottom2[1])
|
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 | class Solution {
public int maximumProduct(int[] nums) {
final int inf = 1 << 30;
int mi1 = inf, mi2 = inf;
int mx1 = -inf, mx2 = -inf, mx3 = -inf;
for (int x : nums) {
if (x < mi1) {
mi2 = mi1;
mi1 = x;
} else if (x < mi2) {
mi2 = x;
}
if (x > mx1) {
mx3 = mx2;
mx2 = mx1;
mx1 = x;
} else if (x > mx2) {
mx3 = mx2;
mx2 = x;
} else if (x > mx3) {
mx3 = x;
}
}
return Math.max(mi1 * mi2 * mx1, mx1 * mx2 * mx3);
}
}
|
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 | class Solution {
public:
int maximumProduct(vector<int>& nums) {
const int inf = 1 << 30;
int mi1 = inf, mi2 = inf;
int mx1 = -inf, mx2 = -inf, mx3 = -inf;
for (int x : nums) {
if (x < mi1) {
mi2 = mi1;
mi1 = x;
} else if (x < mi2) {
mi2 = x;
}
if (x > mx1) {
mx3 = mx2;
mx2 = mx1;
mx1 = x;
} else if (x > mx2) {
mx3 = mx2;
mx2 = x;
} else if (x > mx3) {
mx3 = x;
}
}
return max(mi1 * mi2 * mx1, mx1 * mx2 * mx3);
}
};
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | func maximumProduct(nums []int) int {
const inf = 1 << 30
mi1, mi2 := inf, inf
mx1, mx2, mx3 := -inf, -inf, -inf
for _, x := range nums {
if x < mi1 {
mi1, mi2 = x, mi1
} else if x < mi2 {
mi2 = x
}
if x > mx1 {
mx1, mx2, mx3 = x, mx1, mx2
} else if x > mx2 {
mx2, mx3 = x, mx2
} else if x > mx3 {
mx3 = x
}
}
return max(mi1*mi2*mx1, mx1*mx2*mx3)
}
|
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 | function maximumProduct(nums: number[]): number {
const inf = 1 << 30;
let mi1 = inf,
mi2 = inf;
let mx1 = -inf,
mx2 = -inf,
mx3 = -inf;
for (const x of nums) {
if (x < mi1) {
mi2 = mi1;
mi1 = x;
} else if (x < mi2) {
mi2 = x;
}
if (x > mx1) {
mx3 = mx2;
mx2 = mx1;
mx1 = x;
} else if (x > mx2) {
mx3 = mx2;
mx2 = x;
} else if (x > mx3) {
mx3 = x;
}
}
return Math.max(mi1 * mi2 * mx1, mx1 * mx2 * mx3);
}
|