leetcode713

leetcode713

一、leetcode713

跳转链接
以当前元素(即right指向的元素)为尾缀的元素有多少个,一共有right-left+1个
【10,5,2,6】
【10】
【10,5】
【5】
【5,2】
【2】
【5,2, 6】
【2,6】
【6】

//注意上下两个solution的区别
class Solution1 {
    public int numSubarrayProductLessThanK(int[] nums, int k) {
        // 滑动窗口:寻找以每个 right 指针为右边界的有效连续子树组的个数
        int length = nums.length;
        int product = 1;
        int cnt = 0;
        int left = 0, right = 0;
        while (right < length) {
            product *= nums[right++]; 此时right++后right不被包含
            
            while (left < right && product >= k) { 所以left左边界不能等于
                product /= nums[left++];
            }

            cnt += (right - left);
        }

        return cnt;
    }
}

class Solution2 {
    public int numSubarrayProductLessThanK(int[] nums, int k) {
        // 滑动窗口:寻找以每个 right 指针为右边界的有效连续子树组的个数
        int length = nums.length;
        int product = 1;
        int cnt = 0;
        int left = 0, right = 0;
        while (right < length) {
            product *= nums[right]; 此时的right是被包含的
            
            while (left <= right && product >= k) { 所以left左边界可以等于跳过right
                product /= nums[left++];
            }

            cnt += (right - left + 1);
            right++;
        }

        return cnt;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值