Files
2020-08-07 17:06:53 +08:00

34 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# [713. Subarray Product Less Than K](https://leetcode.com/problems/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:
```c
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
## 解题思路
这道题也是滑动窗口的题目在窗口滑动的过程中不断累乘直到乘积大于 k大于 k 的时候就缩小左窗口有一种情况还需要单独处理一下即类似 [100] 这种情况这种情况窗口内乘积等于 k不小于 k左边窗口等于右窗口这个时候需要左窗口和右窗口同时右移