leetcode笔记|滑动窗口
使用场景
问题具有单调性
图解
基本思路
- 条件不满足时,右指针移动直到满足
条件满足时,左指针移动直到不满足
while(右端点小于边界)
//条件不满足则继续循环
移动右端点
while(条件满足&&左端点小于边界)
移动左端点
例题
leetcode3305元音辅音字符串计数 I
给你一个字符串 word 和一个 非负 整数 k。
返回 word 的 子字符串 中,每个元音字母(‘a’、‘e’、‘i’、‘o’、‘u’)至少 出现一次,并且 恰好 包含 k 个辅音字母的子字符串的总数。
- “恰好” 拆成 “至少”+“至少”(两个单调) “恰好k个” = “至少k个” - “至少k+1”个
- 求至少k个的过程是滑动窗口
class Solution {
public:
int countOfSubstrings(string word, int k) {
return slideWindows(word,k)-slideWindows(word,k+1);
}
long long slideWindows(string word, int k){
//滑动窗口
int left=0;
int right=0;
int n=word.size();
map<char, int> vowelMap;
int consonant = 0;
long long count = 0;
// int i = left;
//移动右端点,直到条件满足
while(right<n){
if(word[right] == 'a'
|| word[right]=='e'
|| word[right] == 'i'
|| word[right] == 'o'
|| word[right] == 'u'){
auto it = vowelMap.find(word[right]);
if(it != vowelMap.end()) it->second++;
else vowelMap[word[right]] = 1;
}
else consonant++;
right++;
//移动左端点,直到条件不满足
while(left<n && vowelMap.size()==5 && consonant>=k){
count += n-right+1;
auto it = vowelMap.find(word[left]);
if(it!= vowelMap.end()){
it->second --;
if(it->second <=0) vowelMap.erase(it);
}
else consonant--;
left++;
}
// cout<< left<<right;
}
return count;
}
};