MYF

HDU 5056 Boring count

题目链接

HDU 5056

解题方法:双指针法统计字符串

题目分析

题目大意

给出一个字符串str以及一个数字k,问该字符串中存在多少个子串,这些子串中每一个字母的出现频率不大于k

解析

设置startend两个指针,然后从头往后扫,如果形成一个则加一个该串的长度,统计的个数即为所求。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <cstring>
#include <iostream>
#include <deque>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1)
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define IN freopen("input.txt","r",stdin);
#define OUT freopen("output.txt","w",stdout);
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#pragma comment(linker, "/STACK:1024000000,1024000000")
typedef long long ll;
using namespace std;
const int maxn=100000+5;
const int mod=1000000007;
const int INF=0x3f3f3f3f;
const double eps=1e-8;
char str[100005];
int vis[27];
int main()
{
int t,k;
cin>>t;
while (t--) {
Memset(vis, 0);
scanf("%s %d",str+1,&k);
int start=1,end=1,len=strlen(str+1);
ll ans=0;
for (int i=1; i<=len; i++,end++) {
int now = str[i]- 'a' +1;
vis[now]++;
if (vis[now]>k) {
// 冲突处理
while (vis[now]>k) {
int tmp =str[start++]- 'a' +1;
vis[tmp]--;
}
ans+=end-start+1;
}
else
ans+=end-start+1;
}
cout<<ans<<endl;
}
}