[题目] 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
.
[分析] 注意到负负得正,所以求解过程中需要分别计算保留以当前数组元素A[i]结尾的连续子数组乘积的最大值和最小值
public class Solution { // O(N)空间 + O(N)时间 public int maxProduct1(int[] A) { if (A == null || A.length == 0) return 0; int n = A.length; int[] max = new int[n]; int[] min = new int[n]; // 初始化条件 max[0] = A[0]; min[0] = A[0]; int finalMax = A[0]; for (int i = 1; i < n; i++) { // 递推式 max[i] = Math.max(A[i], Math.max(max[i - 1] * A[i], min[i - 1] * A[i])); min[i] = Math.min(A[i], Math.min(max[i - 1] * A[i], min[i - 1] * A[i])); if (max[i] > finalMax) finalMax = max[i]; } return finalMax; } // O(1)空间 + O(N)时间,仅需保留上一步的结果 public int maxProduct(int[] A) { if (A == null || A.length == 0) return 0; int n = A.length; int[] max = new int[2]; int[] min = new int[2]; max[0] = A[0]; min[0] = A[0]; int finalMax = A[0]; for (int i = 1; i < n; i++) { max[1] = Math.max(A[i], Math.max(max[0] * A[i], min[0] * A[i])); min[1] = Math.min(A[i], Math.min(max[0] * A[i], min[0] * A[i])); if (max[1] > finalMax) finalMax = max[1]; max[0] = max[1]; min[0] = min[1]; } return finalMax; } }
相关推荐
python python_leetcode题解之152_Maximum_Product_Subarray.py
java java_leetcode题解之Maximum Product Subarray.java
leetcode 和 oj LeetCode 解决方案 Java 版 Leetcode 问题分类 细绳 8 字符串到整数 ...oj_152_maximum_product_subarray / SRC /溶液/ oj_236_lowest_common_ancestor_of_bt / notes.md SRC /溶液/ oj
leetcode写题闪退 #*的多少代表此题的有意思程度 有几题第一次写的时候思绪比较混乱: *****Regular Expression Matching 2014.10.29 对于Find Minimum in Rotated Sorted Array II 和 Find Minimum in Rotated ...
318| [Maximum Product of Word Lengths](https://leetcode.com/problems/maximum-product-of-word-lengths/) | [C++](./C++/maximum-product-of-word-lengths.cpp) [Python](./Python/maximum-product-of-word-...
46. Maximum Product Subarray:找出一个数字序列中乘积最大的连续子序列。 47. Coins in a Line:n 个硬币排成一行,两个玩家轮流拿走左边或右边的一堆硬币,求得胜策略。 【二分搜索】 48. Search Insert ...
对于每一道算法题会总结代码、时间复杂度以及一些好的blog排序(sort)数组(...SubarrayLeetCode 152 Maximum Product SubarrayLintCode 138 Subarray SumLintCode 139 Subarray Sum ClosestLeetCode 392 Is Subseq
leetcode二维数组搜索leetcode 对于 Leetcode ...最大积子./152_maximum_product_subarray.c ./9_palindrome_number.c : 回文数,O(1)空间复杂度 ./14_longest_common_prefix.c : 最长公共前缀 ./19_Remo
Maximum Product Subarray等。这类题目通常要求读者使用动态规划来解决问题,例如使用DP数组来记录状态、使用递归来计算结果等。 6. 排序和查找类题目 排序和查找类题目是LeetCode原题中的一个基础类题目,本文中...
lru缓存leetcode 力扣_30天 力扣 30 天挑战赛 日 问题描述 问题和解决方案链接 Git 解决方案页面 1 SINGLE NUMBER 2 HAPPY NUMBER 3 MAXIMUM SUBARRAY 4 Move Zeroes 5 Best Time to Buy and Sell Stock II 6 GROUP ...
46. Maximum Product Subarray:计算子数组的最大乘积。 47. Coins in a Line:动态规划解决博弈问题,如Nim游戏。 八、二分查找 48. Search Insert Position:查找插入位置。 49. Find Minimum in Sorted Rotated ...
6. **Maximum Product Subarray** (最大乘积子数组) 类似于最大子数组和,但需要考虑负数的影响,可以同时维护最大正乘积和最大负乘积。 7. **Best Time to Buy and Sell Stock** 系列问题 股票买卖问题,涉及到...