我是靠谱客的博主 无限口红,最近开发中收集的这篇文章主要介绍Add to List 713. Subarray Product Less Than K,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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.

    分析:

    注意是 contiguous  subarrays

    解法:

    class Solution {
    public int numSubarrayProductLessThanK(int[] nums, int k) {
    if(k<=1)
    return 0;
    int and=1;
    int count = 0;
    int left=0,right =0;
    for(int i =0;i<nums.length;i++){
    right = i;
    and *= nums[i];
    while(and >= k) and /= nums[left++];
    count += right - left +1;
    }
    return count;
    }
    }


最后

以上就是无限口红为你收集整理的Add to List 713. Subarray Product Less Than K的全部内容,希望文章能够帮你解决Add to List 713. Subarray Product Less Than K所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(79)

评论列表共有 0 条评论

立即
投稿
返回
顶部