前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LWC 55:713. Subarray Product Less Than K

LWC 55:713. Subarray Product Less Than K

作者头像
用户1147447
发布2018-01-02 10:33:15
4170
发布2018-01-02 10:33:15
举报
文章被收录于专栏:机器学习入门机器学习入门

LWC 55:713. Subarray Product Less Than K

传送门:713. Subarray Product Less Than K

Problem:

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内,所以不可能无限乘下去,采用双指针{lf, rt},一旦乘积大于等于k,则可以停止后续的搜索,同理一旦超过k,那么lf也需要更新。

更新规则: 比如[10,5],当rt 搜索到5时,lf 搜索到10时,从5出发的子数组有[10, 5] 和[5],所以cnt += rt - lf + 1即可。

代码如下:

代码语言:javascript
复制
    public int numSubarrayProductLessThanK(int[] nums, int k) {
        int cnt = 0;
        int n = nums.length;

        int p = 1;
        int j = 0;
        for (int i = 0; i < n; ++i) {
            p *= nums[i];
            if (p < k) {
                cnt += i - j + 1;            
            }
            else { // p >= k
                for (; j < n; ){
                    p /= nums[j++];
                    if (p < k) break;
                }
                if (p < k) cnt += i - j + 1;
            }
        }
        return cnt;
    }     
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-10-23 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • LWC 55:713. Subarray Product Less Than K
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档