mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<p>给你一个整数数组 <code>nums</code> 和一个整数 <code>k</code> ,请你返回 <code>nums</code> 中 <strong>好</strong> 子数组的数目。</p>
|
||
|
||
<p>一个子数组 <code>arr</code> 如果有 <strong>至少</strong> <code>k</code> 对下标 <code>(i, j)</code> 满足 <code>i < j</code> 且 <code>arr[i] == arr[j]</code> ,那么称它是一个 <strong>好</strong> 子数组。</p>
|
||
|
||
<p><strong>子数组</strong> 是原数组中一段连续 <strong>非空</strong> 的元素序列。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><b>输入:</b>nums = [1,1,1,1,1], k = 10
|
||
<b>输出:</b>1
|
||
<b>解释:</b>唯一的好子数组是这个数组本身。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><b>输入:</b>nums = [3,1,4,3,2,2,4], k = 2
|
||
<b>输出:</b>4
|
||
<b>解释:</b>总共有 4 个不同的好子数组:
|
||
- [3,1,4,3,2,2] 有 2 对。
|
||
- [3,1,4,3,2,2,4] 有 3 对。
|
||
- [1,4,3,2,2,4] 有 2 对。
|
||
- [4,3,2,2,4] 有 2 对。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= nums.length <= 10<sup>5</sup></code></li>
|
||
<li><code>1 <= nums[i], k <= 10<sup>9</sup></code></li>
|
||
</ul>
|