[尺取法] cf 701c They Are Everywhere

12 篇文章 0 订阅

题目分析

    本题题意为在给定字母(区分大小写)字符串中找一个最短子区间,使得该区间内包含所有出现过的字母。
    采用尺取法,l,r为区间的左右端点,记录[l,r]中各个字母出现的次数。r向右扩展, 对于每次r的扩展,尝试更新l(即l尽量向右走,当[l,r]中有多个l位置字母时l更新),然后更新ans。

代码

#include <cstdio>
#include<iostream>
#include<cmath>
#include<cstring>
#include<string>
#include<algorithm>
#include<map>
#include<climits>
using namespace std;
map<char,int> num;
string s;
int n;
int main()
{
    ios::sync_with_stdio(false);
    cin>>n>>s;
    int l=0,type=0,ans=n;
    for(int r=0;r<s.size();r++)
    {
        num[s[r]]++;
        while(num[s[l]]>1 && l<r)
            num[s[l]]--,l++;
        if(num.size()>type)
            type++,ans=r-l+1;
        ans=min(ans,r-l+1);
    }
    cout<<ans<<endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值