hdu 5672 String (尺取法)

本文介绍了一个关于字符串的编程挑战,任务是找出含有至少k种不同字符的所有子串数量。通过输入一系列测试案例,文章展示了如何使用滑动窗口算法解决此问题,并提供了完整的代码实现。

String

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1961    Accepted Submission(s): 636


Problem Description
There is a string  S . S  only contain lower case English character. (10length(S)1,000,000)
How many substrings there are that contain at least  k(1k26)  distinct characters?
 

Input
There are multiple test cases. The first line of input contains an integer  T(1T10)  indicating the number of test cases. For each test case:

The first line contains string  S .
The second line contains a integer  k(1k26) .
 

Output
For each test case, output the number of substrings that contain at least  k  dictinct characters.
 

Sample Input
  
2 abcabcabca 4 abcabcabcabc 3
 

Sample Output
  
0 55
 

Source
 

Recommend
wange2014   |   We have carefully selected several similar problems for you:   6055  6054  6053  6052  6051 
#include<stdio.h>
#include<algorithm>
#include<string.h>
using namespace std;
char s[1000333];
int c[30];
int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%s",s);
        memset(c,0,sizeof(c));
        int len=strlen(s);
        int l = 0,r = 0,k;
        long long ans=0;
        scanf("%d",&k);
        int cnt=0;
        while(l<=r&&l<len)
        {
            while(cnt<k&&r<len)
            {
                c[s[r]-'a']++;
                if(c[s[r]-'a']==1)cnt++;
                r++;
            }

            if(cnt==k)ans+=len-r+1;
            if(c[s[l]-'a']==1)
                cnt--;
            c[s[l]-'a']--;
            l++;
        }
        printf("%lld\n",ans);
    }
}


 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值