2023-12-09 18:42:21 +08:00
|
|
|
|
<p>给你一个字符串 <code>s</code> 和一个整数 <code>k</code> ,请你找出 <code>s</code> 中的最长子串, 要求该子串中的每一字符出现次数都不少于 <code>k</code> 。返回这一子串的长度。</p>
|
2022-03-27 20:56:26 +08:00
|
|
|
|
|
2023-12-09 18:42:21 +08:00
|
|
|
|
<p data-pm-slice="1 1 []">如果不存在这样的子字符串,则返回 0。</p>
|
|
|
|
|
|
|
|
|
|
<p> </p>
|
2022-03-27 20:56:26 +08:00
|
|
|
|
|
|
|
|
|
<p><strong>示例 1:</strong></p>
|
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
|
<strong>输入:</strong>s = "aaabb", k = 3
|
|
|
|
|
<strong>输出:</strong>3
|
|
|
|
|
<strong>解释:</strong>最长子串为 "aaa" ,其中 'a' 重复了 3 次。
|
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
|
|
<p><strong>示例 2:</strong></p>
|
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
|
<strong>输入:</strong>s = "ababbc", k = 2
|
|
|
|
|
<strong>输出:</strong>5
|
|
|
|
|
<strong>解释:</strong>最长子串为 "ababb" ,其中 'a' 重复了 2 次, 'b' 重复了 3 次。</pre>
|
|
|
|
|
|
2023-12-09 18:42:21 +08:00
|
|
|
|
<p> </p>
|
2022-03-27 20:56:26 +08:00
|
|
|
|
|
|
|
|
|
<p><strong>提示:</strong></p>
|
|
|
|
|
|
|
|
|
|
<ul>
|
2023-12-09 18:42:21 +08:00
|
|
|
|
<li><code>1 <= s.length <= 10<sup>4</sup></code></li>
|
2022-03-27 20:56:26 +08:00
|
|
|
|
<li><code>s</code> 仅由小写英文字母组成</li>
|
2023-12-09 18:42:21 +08:00
|
|
|
|
<li><code>1 <= k <= 10<sup>5</sup></code></li>
|
2022-03-27 20:56:26 +08:00
|
|
|
|
</ul>
|