zoukankan      html  css  js  c++  java
  • hdu 5056 Boring count (窗体滑动)

    You are given a string S consisting of lowercase letters, and your task is counting the number of substring that the number of each lowercase letter in the substring is no more than K.
     

    Input

    In the first line there is an integer T , indicates the number of test cases.
    For each case, the first line contains a string which only consist of lowercase letters. The second line contains an integer K.

    [Technical Specification]
    1<=T<= 100
    1 <= the length of S <= 100000
    1 <= K <= 100000
     

    Output

    For each case, output a line contains the answer.
     

    Sample Input

    3 abc 1 abcabc 1 abcabc 2
     

    Sample Output

    6 15 21


    题目大意:求出一个字符串的子串中反复的小写字母不超过K个的个数。

    思路:使用窗体滑动的方法,设置两个指针,分别指在串的左边和右边。当不满足条件时左指针向右移动,直到将当前的右指针删除到符合条件

    。然后从原来不符合条件的下一个字母再開始计数。


    
    #include <iostream>
    #include <algorithm>
    #include <cstdio>
    #include <cstring>
    #define LL __int64
    #define inf 0x3f3f3f3f
    char s[100010];
    LL sum[100010];
    using namespace std;
    int main()
    {
        LL n,m,cla,i,j,l;
        scanf("%I64d",&cla);
        while(cla--)
        {
            memset(sum,0,sizeof(sum));
            scanf("%s %I64d",s,&n);
            l=strlen(s);
            LL pos=0,ans=0;
            for(i=0;i<l;i++)
            {
                sum[s[i]-'a']++;
                while(sum[s[i]-'a']>n)//当遇到不符合条件的时候左指针右移,并删除经过的字母的累计次数
                {
                    sum[s[pos]-'a']--;
                    pos++;
                }
                ans+=i-pos+1;//当符合条件的时候就加上当前这段的字母个数
            }
            printf("%I64d ",ans);
        }
        return 0;
    }


  • 相关阅读:
    Spring的事务 之 9.4 声明式事务 ——跟我学spring3
    我对AOP的理解
    基于JDK动态代理和CGLIB动态代理的实现Spring注解管理事务(@Trasactional)到底有什么区别。
    我对IoC/DI的理解
    Spring对事务管理的支持的发展历程(基础篇)
    Tomcat一个BUG造成CLOSE_WAIT
    用dubbo时遇到的一个序列化的坑
    只写完功能代码仅仅只是开始
    事物隔离级别和乐观锁
    关于ubuntu实机与虚机互相copy
  • 原文地址:https://www.cnblogs.com/jzssuanfa/p/7399596.html
Copyright © 2011-2022 走看看