Add Date 2014-09-23

Maximum Product Subarray

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.

简单来说就是在一个 int 数组中找一段连续的子数组,使其乘积最大,数组中包含正数、负数和0。不考虑乘积太大超出范围。

解法一:

动态规划的方法,今天在微信“待字闺中”中看到的,借来分享。遍历一遍,优于解法二,复杂度O(n).

 int max2(int a, int b) {
if(a > b) return a;
return b;
} int max3(int a, int b, int c) {
return max2(max2(a, b), c);
} int min2(int a, int b) {
if(a > b) return b;
return a;
} int min3(int a, int b, int c) {
return min2(min2(a, b), c);
} int maxProduct(int A[], int n) {
int max = A[];
int min = A[];
int a = max;
for(int i = ; i < n; ++i) {
int tmpMax = max * A[i];
int tmpMin = min * A[i];
max = max3(tmpMax, tmpMin, A[i]);
min = min3(tmpMax, tmpMin, A[i]);
a = max2(max, a);
}
return a;
}

解法二:

之前做过找连续子数组使其加和最大,比较简单,见《剑指offer》Q31。

刚开始也试图从那道题中找思路,发现不太科学…后来自己摸索出一个思路,分享一下。

首先,任何一个数字和0相乘得到的都是0;另外,不考虑0的情况下,因为数字都是整数,所以乘积的绝对值是不会变小的;再次,负负得正。

基于这三点考虑,首先基于递归的思想用0分段,也就是说,把数组 A 拆分为 [一段不包含0的数组]、[0]、[剩下的数组],并设 rel1 为不包含0的子数组得到的最大乘积,rel2 为剩下的数组得到的最大乘积,那么,数组 A 的最大乘积就是 max{rel1,0,rel2}。rel2递归的用这个思路得到。

然后,就是求一个不包含0的数组的最大乘积。由于负负得正,可以想到,如果负数的个数为偶数,那么所有的数字相乘就是那个最大乘积;如果负数的个数为奇数,那么一定是某一个负数的左边所有数字乘积或者右边所有数字乘积为最大,所以就可以从前向后遍历数组,并把所有元素相乘,用 numAll1 记录这个乘积,同时每次更新 num1 为从前到后相乘过程中最大的乘积;然后再从后向前遍历数组,用 numAll2 记录乘积,num2 记录最大值,这样整个数组的最大乘积就是 max{num1,num2}。

如果你觉得不理解为什么最大乘积的子数组一定是从第一个数字连续的一个子数组,或者是从最后一个数字连续的子数组,可以这样想:

如果这个乘积最大的子数组是中间的某一段,当然排除掉只有一个元素且为负数的情况,那么这个乘积一定是正数(这个还不懂的话自己想一下吧,简单的),如果

1.这段子数组左边(右边)是全正的,那么和左边(右边)所有的数相乘的结果一定不会比当前的结果小,所以可以从左边(右边)连续;所以这段子数组左边和右边一定都有负数!

2.这段子数组左边(右边)有偶数个负数,同1是不可能的;而且如果有多个负数,一定可以有偶数个可以包含在中间这段子数组中使乘积更大;所以一定左边和右边各有一个负数!

3.如果左边和右边各有一个负数,那么就有两个负数,这样的话把整个数组相乘的结果一定不小于中间这段子数组。

这个算法中遍历整个数组三次,复杂度为O(n).

终于把逻辑说完了,个人觉得很啰嗦,只是想说明白点,不知道大家有没明白,下面附 code,欢迎其它思路。

 class Solution {
public:
int maxProductNo0(int A[], int n) { //没有0的数组求最大乘积
int num1 = A[];
int numAll1 = A[];
for(int i = ; i < n; ++i) {
numAll1 *= A[i];
num1 = numAll1 > num1 ? numAll1 : num1;
} int num2 = A[n-];
int numAll2 = A[n-];
for(int i = n-; i >= ; --i) {
numAll2 *= A[i];
num2 = numAll2 > num2 ? numAll2 : num2;
}
return num1 > num2 ? num1 : num2;
} int maxProduct(int A[], int n) { //求数组最大乘积
if(A == NULL || n < )
return ;
int index0 = ;
int rel1 = A[];
int rel2 = A[];
bool have0 = false;
for(; index0 < n; ++index0) {
if(A[index0] == ) {
have0 = true;
break;
}
}
if(index0 > )
rel1 = maxProductNo0(A, index0); //没有0的数组的最大乘积
if(n-index0- > )
rel2 = maxProduct(A+index0+, n-index0-); //剩下的数组的最大乘积
rel1 = rel1 > rel2 ? rel1 : rel2;
if(have0)
rel1 = rel1 > ? rel1 : ;
return rel1;
}
};

【LeetCode】Maximum Product Subarray 求连续子数组使其乘积最大的更多相关文章

  1. [LeetCode] Maximum Product Subarray 求最大子数组乘积

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

  2. [leetcode]523. Continuous Subarray Sum连续子数组和(为K的倍数)

    Given a list of non-negative numbers and a target integer k, write a function to check if the array ...

  3. LeetCode Maximum Product Subarray(枚举)

    LeetCode Maximum Product Subarray Description Given a sequence of integers S = {S1, S2, . . . , Sn}, ...

  4. LeetCode Maximum Product Subarray 解题报告

    LeetCode 新题又更新了.求:最大子数组乘积. https://oj.leetcode.com/problems/maximum-product-subarray/ 题目分析:求一个数组,连续子 ...

  5. 连续子数组的最大乘积及连续子数组的最大和(Java)

    1. 子数组的最大和 输入一个整形数组,数组里有正数也有负数.数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和.求所有子数组的和的最大值.例如数组:arr[]={1, 2, 3, -2, ...

  6. [LeetCode] Maximum Product Subarray 连续数列最大积

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

  7. lintcode :continuous subarray sum 连续子数组之和

    题目 连续子数组求和 给定一个整数数组,请找出一个连续子数组,使得该子数组的和最大.输出答案时,请分别返回第一个数字和最后一个数字的值.(如果两个相同的答案,请返回其中任意一个) 样例 给定 [-3, ...

  8. Maximum Product Subarray 最大连续乘积子集

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

  9. LeetCode: Maximum Product Subarray && Maximum Subarray &子序列相关

    Maximum Product Subarray Title: Find the contiguous subarray within an array (containing at least on ...

随机推荐

  1. 指定UIView的某几个角为圆角

    如果需要将UIView的四个角全部设置为圆角,做法相当简单,只需要设置其layer的cornerRadius属性即可.而若要指定某几个角(小于4)为圆角,而别的角不变的时候,这种方法就不好用了.这种情 ...

  2. Chrome自带恐龙小游戏的源码研究(一)

    目录 Chrome自带恐龙小游戏的源码研究(一)——绘制地面 Chrome自带恐龙小游戏的源码研究(二)——绘制云朵 Chrome自带恐龙小游戏的源码研究(三)——昼夜交替 Chrome自带恐龙小游戏 ...

  3. EasyUI触发方法、触发事件、创建对象的格式??

    创建对象 $("选择器").组件名({ 属性名 : 值, 属性名 : 值 }); 触发方法 $("选择器").组件名("方法名",参数); ...

  4. JavaScript -- JavaScript DOM 编程艺术(第2版)

    /* 渐进增强 平稳退化 网页 结构层(structural layer): HTML 表示层(presentation layer): CSS <link rel="styleshe ...

  5. Python:list、dict、string

    <<List>>列表 [python] view plaincopy 创建列表 sample_list = ['a',1,('a','b')] Python 列表操作 samp ...

  6. linux自动ftp上传与下载文件的简单脚本

    #!/bin/sh cd /data/backup/55mysql DATE=`date +'%Y%m%d'`file="55_mysql_"$DATE"03*.rar& ...

  7. 九度OJ 1058:反序输出 (基础题)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:8454 解决:3042 题目描述: 输入任意4个字符(如:abcd), 并按反序输出(如:dcba) 输入: 题目可能包含多组用例,每组用例 ...

  8. 【题解】 P5022旅行

    [题解]P5022 旅行 当给定你一颗树的时候,这题就是一道送分题,凉心啊! 但是给定你一颗基环树呢? 暴力断环直接跑. 但是数据范围\(n\le 1000\) 乱做就完事了. 考场上这样想的,对于\ ...

  9. 我的Android进阶之旅------>Android资源文件string.xml中\u2026的意思

    今天看了一个string.xml文件,对其中的一行代码中包含的\u2026不是很理解,后来查阅资料后发现了其中的意思. 代码如下: <resources xmlns:xliff="ur ...

  10. FastJson处理Map List 对象

     Fastjson是一个Java语言编写的高性能功能完善的JSON库. Fastjson是一个Java语言编写的JSON处理器,由阿里巴巴公司开发. 1.遵循http://json.org标准,为其官 ...