-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path0152.乘积最大子数组.java
72 lines (68 loc) · 1.49 KB
/
0152.乘积最大子数组.java
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=152 lang=java
*
* [152] 乘积最大子数组
*
* https://leetcode.cn/problems/maximum-product-subarray/description/
*
* algorithms
* Medium (42.72%)
* Likes: 1696
* Dislikes: 0
* Total Accepted: 276.3K
* Total Submissions: 646.7K
* Testcase Example: '[2,3,-2,4]'
*
* 给你一个整数数组 nums ,请你找出数组中乘积最大的非空连续子数组(该子数组中至少包含一个数字),并返回该子数组所对应的乘积。
*
* 测试用例的答案是一个 32-位 整数。
*
* 子数组 是数组的连续子序列。
*
*
*
* 示例 1:
*
*
* 输入: nums = [2,3,-2,4]
* 输出: 6
* 解释: 子数组 [2,3] 有最大乘积 6。
*
*
* 示例 2:
*
*
* 输入: nums = [-2,0,-1]
* 输出: 0
* 解释: 结果不能为 2, 因为 [-2,-1] 不是子数组。
*
*
*
* 提示:
*
*
* 1 <= nums.length <= 2 * 10^4
* -10 <= nums[i] <= 10
* nums 的任何前缀或后缀的乘积都 保证 是一个 32-位 整数
*
*
*/
// @lc code=start
class Solution {
public int maxProduct(int[] nums) {
int max = Integer.MIN_VALUE;
int imin = 1, imax = 1;
for (int num : nums) {
if (num < 0) {
int v = imax;
imax = imin;
imin = v;
}
imax = Math.max(imax * num, num);
imin = Math.min(imin * num, num);
max = Math.max(imax, max);
}
return max;
}
}
// @lc code=end