【LeetCode】Maximum Product Subarray 求连续子数组使其乘积最大
Add Date 2014-09-23
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 求连续子数组使其乘积最大的更多相关文章
- [LeetCode] Maximum Product Subarray 求最大子数组乘积
Find the contiguous subarray within an array (containing at least one number) which has the largest ...
- [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 ...
- LeetCode Maximum Product Subarray(枚举)
LeetCode Maximum Product Subarray Description Given a sequence of integers S = {S1, S2, . . . , Sn}, ...
- LeetCode Maximum Product Subarray 解题报告
LeetCode 新题又更新了.求:最大子数组乘积. https://oj.leetcode.com/problems/maximum-product-subarray/ 题目分析:求一个数组,连续子 ...
- 连续子数组的最大乘积及连续子数组的最大和(Java)
1. 子数组的最大和 输入一个整形数组,数组里有正数也有负数.数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和.求所有子数组的和的最大值.例如数组:arr[]={1, 2, 3, -2, ...
- [LeetCode] Maximum Product Subarray 连续数列最大积
Find the contiguous subarray within an array (containing at least one number) which has the largest ...
- lintcode :continuous subarray sum 连续子数组之和
题目 连续子数组求和 给定一个整数数组,请找出一个连续子数组,使得该子数组的和最大.输出答案时,请分别返回第一个数字和最后一个数字的值.(如果两个相同的答案,请返回其中任意一个) 样例 给定 [-3, ...
- Maximum Product Subarray 最大连续乘积子集
Find the contiguous subarray within an array (containing at least one number) which has the largest ...
- LeetCode: Maximum Product Subarray && Maximum Subarray &子序列相关
Maximum Product Subarray Title: Find the contiguous subarray within an array (containing at least on ...
随机推荐
- 学习使用用Eclipse编写java程序
本文讲解了在Eclipse中完成一个HelloWorld程序的编写过程. 刚刚学习java的同学们可能用 记事本编写java源代码,在命令提示符中完成java程序的编译和运行过程.这样的方法对于学习j ...
- 【Web API系列教程】3.10 — 实战:处理数据(公布App到Azure App Service)
在这最后一节中.你将把应用程序公布到Azure.在Solution Explorer中,右击项目并选择Publish. 点击Publish打开Publish Web对话框. 假设你在新建项目的时候选中 ...
- java 方法重写原则
方法重写应遵循“三同一小一大”原则: “三同”:即方法名相同,形参列表相同,返回值类型相同: “一小”:子类方法声明抛出的异常比父类方法声明抛出的异常更小或者相等: “一大”:子类方法的访问修饰符应比 ...
- HDFS源码分析之数据块及副本状态BlockUCState、ReplicaState
关于数据块.副本的介绍,请参考文章<HDFS源码分析之数据块Block.副本Replica>. 一.数据块状态BlockUCState 数据块状态用枚举类BlockUCState来表示,代 ...
- mysql数据库常用语句系列
mysql查询某个字段长度 一般查询语句:SELECT `lcontent` FROM `caiji_ym_liuyan` 查询数据: 有些时候需要查询某个字段的长度为多少时候才显示数据: SQL ...
- C# 托管
委托 委托让我们可以把函数引用保存在变量中.这就像在 C++ 中使用 typedef 保存函数指针一样. 委托使用关键字 delegate 声明.看看这个例子,你就能理解什么是委托: 例子: 代码: ...
- HDU 2473 Junk-Mail Filter(并查集的删除操作)
题目地址:pid=2473">HDU 2473 这题曾经碰到过,没做出来. .如今又做了做,还是没做出来. ... 这题涉及到并查集的删除操作.想到了设一个虚节点,可是我把虚节点设为了 ...
- Android自定义滑动显示隐藏布局
方式一:上下左右滑动显示隐藏布局 总结代码地址: http://git.oschina.net/anan9303/customView参考例子: http://www.jianshu.com/p/fc ...
- EasyDSS高性能流媒体服务器前端重构(六)- webpack-dev-server 支持手机端访问
很多时候,前端开发的页面,不仅要在PC端测试效果, 还要在手机端测试效果. 在开发阶段, 我们以 webpack-dev-server 来启动浏览器, 打开正在开发的页面. webpack-dev-s ...
- React-Native开源项目学习
https://github.com/liuhongjun719/react-native-DaidaiHelperNew 借贷助手https://github.com/liuhongjun719/r ...