LeetCode Maximum Product Subarray(最大子数组乘积)

本文介绍了一种利用动态规划法解决最大子数组乘积问题的方法。通过维护最大值和最小值来应对数组中可能出现的负数情况,最终求得具有最大乘积的连续子数组。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


Find the contiguous subarray within an array (containing at least one number) which has the largest product.

For example, given the array [2,3,-2,4],
the contiguous subarray [2,3] has the largest product = 6.

题意:给出一个数组,求其最大子数组的乘积

思路:动态规划法,因为在数组中可能存在负数,因为既要计算最小值 ,又要计算最大值。

用minValue(n) 表示从0到n得到的最小子数组乘积,用maxValue(n)表示从0到n得到的最大子数组乘积

状态转移方程为dp(n) = max{minValue(n-1)*array[n], maxValue(n-1)*array[n], array[n]}

代码如下:

class Solution {
    public int maxProduct(int[] nums)
    {
        int minValue = 1, maxValue = 1, productValue = Integer.MIN_VALUE;

        int len = nums.length;
        for (int i = 0; i < len; i++)
        {
            int tmpMax = Math.max(minValue * nums[i], Math.max(maxValue * nums[i], nums[i]));
            int tmpMin  = Math.min(minValue * nums[i], Math.min(maxValue * nums[i], nums[i]));

            maxValue = tmpMax;
            minValue = tmpMin;
            productValue = Math.max(productValue, maxValue);
        }

        return productValue;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

kgduu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值