3297. 统计重新排列后包含另一个字符串的子字符串数目 I
题目链接 | 3297. 统计重新排列后包含另一个字符串的子字符串数目 I |
---|---|
思路 | 滑动窗口 |
题解链接 | O(n) 滑动窗口求个数(Python/Java/C++/Go) |
关键点 | 1. LeetCode-76版本的升级题 2. 内循环中如何统计数量 |
时间复杂度 | \(O(n+|\Sigma|)\) |
空间复杂度 | \(O(|\Sigma|)\) |
代码实现:
class Solution:
def validSubstringCount(self, s: str, t: str) -> int:
if len(s) < len(t):
return 0
cnt = defaultdict(int)
for ch in t:
cnt[ch] += 1
less = len(cnt)
answer = 0
left = 0
for ch in s:
cnt[ch] -= 1
if cnt[ch] == 0:
less -= 1
while less == 0:
if cnt[s[left]] == 0:
less += 1
cnt[s[left]] += 1
left += 1
answer += left
return answer