当前位置:网站首页>LeetCode 152. 乘积最大子数组 每日一题
LeetCode 152. 乘积最大子数组 每日一题
2022-07-07 15:32:00 【@小红花】
问题描述
给你一个整数数组 nums ,请你找出数组中乘积最大的非空连续子数组(该子数组中至少包含一个数字),并返回该子数组所对应的乘积。
测试用例的答案是一个 32-位 整数。
子数组 是数组的连续子序列。
示例 1:
输入: nums = [2,3,-2,4]
输出: 6
解释: 子数组 [2,3] 有最大乘积 6。
示例 2:输入: nums = [-2,0,-1]
输出: 0
解释: 结果不能为 2, 因为 [-2,-1] 不是子数组。
提示:
1 <= nums.length <= 2 * 104
-10 <= nums[i] <= 10
nums 的任何前缀或后缀的乘积都 保证 是一个 32-位 整数来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/maximum-product-subarray
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
Java
class Solution {
public int maxProduct(int[] nums) {
if(nums.length == 1) return nums[0];
int ans = 0;
int positive = 1;
int negative = 1;
for(int n : nums){
if(positive <= 0) positive = 1;
if(negative >= 0) negative = 1;
if(n < 0){
int t = negative;
negative = positive * n;
positive = t * n;
}else {
negative *= n;
positive *= n;
}
if(positive > ans) ans = positive;
}
return ans;
}
}
边栏推荐
- 【PHP】PHP接口继承及接口多继承原理与实现方法
- Inner monologue of accidental promotion
- LocalStorage和SessionStorage
- 目标跟踪常见训练数据集格式
- ORACLE进阶(六)ORACLE expdp/impdp详解
- 华东师大团队提出,具有DNA调控电路的卷积神经网络的系统分子实现
- 最新高频Android面试题目分享,带你一起探究Android事件分发机制
- Imitate the choice of enterprise wechat conference room
- QT中自定义控件的创建到封装到工具栏过程(二):自定义控件封装到工具栏
- Sqlserver2014+: create indexes while creating tables
猜你喜欢
ByteDance Android gold, silver and four analysis, Android interview question app
字节跳动Android金三银四解析,android面试题app
QT中自定义控件的创建到封装到工具栏过程(二):自定义控件封装到工具栏
华东师大团队提出,具有DNA调控电路的卷积神经网络的系统分子实现
【Android -- 数据存储】使用 SQLite 存储数据
A tour of gRPC:03 - proto序列化/反序列化
time标准库
Sort out several important Android knowledge and advanced Android development interview questions
AutoLISP series (3): function function 3
As an Android Developer programmer, Android advanced interview
随机推荐
AutoLISP series (2): function function 2
直接上干货,100%好评
掌握这个提升路径,面试资料分享
目标跟踪常见训练数据集格式
time标准库
DAPP defi NFT LP single and dual currency liquidity mining system development details and source code
47_ Contour lookup in opencv cv:: findcontours()
Pycharm terminal enables virtual environment
How does laravel run composer dump autoload without emptying the classmap mapping relationship?
Personal notes of graphics (4)
射线与OBB相交检测
字节跳动Android面试,知识点总结+面试题解析
[vulnhub range] thales:1
使用JSON.stringify()去实现深拷贝,要小心哦,可能有巨坑
[Android -- data storage] use SQLite to store data
最新阿里P7技术体系,妈妈再也不用担心我找工作了
二叉搜索树(特性篇)
偶然升职的内心独白
Module VI
DNS 系列(一):为什么更新了 DNS 记录不生效?