[leetcode] 713. Subarray Product Less Than K

网友投稿 952 2022-10-20

[leetcode] 713. Subarray Product Less Than K

[leetcode] 713. Subarray Product Less Than K

Description

Your are given an array of positive integers nums.

Count and print the number of (contiguous) subarrays where the product of all the elements in the subarray is less than k.

Example 1: Input:

nums = [10, 5, 2, 6], k = 100

Output:

8

Explanation:

The 8 subarrays that have product less than 100 are: [10], [5], [2], [6], [10, 5], [5, 2], [2, 6], [5, 2, 6].Note that [10, 5, 2] is not included as the product of 100 is not strictly less than k.

Note:

0 < nums.length <= 50000.0 < nums[i] < 1000.0 <= k < 10^6.

分析

题目的意思是:找出连续子数组数连乘小于K,求满足要求的连续子数组的个数。

开始想连乘保存到数组里面,后面会发现,连乘的数会很大,导致溢出。后面选择了这个滑动窗口的方式。

代码

class Solution {public: int numSubarrayProductLessThanK(vector& nums, int k) { if(k<=1){ return 0; } int res=0; int mul=1; int left=0; for(int i=0;i=k){ mul=mul/nums[left]; left++; } res+=i-left+1; } return res; }};

参考文献

​​[LeetCode] Subarray Product Less Than K 子数组乘积小于K​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:一个Android的json-api-mock框架
下一篇:PicketLink- 统一身份管理框架
相关文章

 发表评论

暂时没有评论,来抢沙发吧~