给你一个整数数组 nums ,请你找出数组中乘积最大的非空连续子数组(该子数组中至少包含一个数字),并返回该子数组所对应的乘积。
测试用例的答案是一个 32-位 整数。
子数组 是数组的连续子序列。
示例 1:
输入: nums = [2,3,-2,4]
输出: 6
解释: 子数组 [2,3] 有最大乘积 6。
示例 2:
输入: nums = [-2,0,-1]
输出: 0
解释: 结果不能为 2, 因为 [-2,-1] 不是子数组。
思路:
动态规划,需要分别记录包含当前数字的最大、最小连续子数组乘积。
class Solution {
public:
int maxProduct(vector<int>& nums) {
int res = INT_MIN;
int temp_max = 1;
int temp_min = 1;
for (int i = 0; i < nums.size(); i++)
{
int x = temp_max;
temp_max = max(nums[i], max(temp_max * nums[i], temp_min * nums[i]));
temp_min = min(nums[i], min(temp_min * nums[i], x * nums[i]));
if (temp_max > res) res = temp_max;
}
return res;
}
};