码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 5056 Boring count

时间:2014-10-14 17:17:19      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   for   sp   on   amp   ef   size   

题解:前缀和计算统计。

#include <cstdio>
#include <cstring>
using namespace std;
typedef long long LL;
LL ans; char s[100010];
int T,k,t[200],i,j,n;
int main(){
    scanf("%d",&T);
    while(T--){
        scanf("%s%d",s,&k);
        n=strlen(s);
        for(i=1;i<200;i++)t[i]=0;
        for(ans=i=j=0;i<n;i++){
            if(i)t[s[i-1]]--;
            while(j<n&&t[s[j]]<k)t[s[j++]]++;
            ans+=(LL)(j-i);
        }printf("%I64d\n",ans);
    }return 0;
}

HDU 5056 Boring count

标签:style   io   ar   for   sp   on   amp   ef   size   

原文地址:http://www.cnblogs.com/forever97/p/4024511.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!