leetcode笔记|滑动窗口

leetcode笔记|滑动窗口

使用场景

问题具有单调性

图解

在这里插入图片描述

基本思路

  1. 条件不满足时,右指针移动直到满足
    条件满足时,左指针移动直到不满足
while(右端点小于边界)
		//条件不满足则继续循环
		移动右端点
		while(条件满足&&左端点小于边界)
			移动左端点

例题

leetcode3305元音辅音字符串计数 I

给你一个字符串 word 和一个 非负 整数 k。
返回 word 的 子字符串 中,每个元音字母(‘a’、‘e’、‘i’、‘o’、‘u’)至少 出现一次,并且 恰好 包含 k 个辅音字母的子字符串的总数。

  1. “恰好” 拆成 “至少”+“至少”(两个单调) “恰好k个” = “至少k个” - “至少k+1”个
  2. 求至少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;
            }
    };

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值