BNU 13174 Substring Frequency

3C. Substring Frequency

Time Limit: 1000ms
Memory Limit: 32768KB
64-bit integer IO format:  %lld      Java class name: Main
 
 

A string is a finite sequence of symbols that are chosen from an alphabet. In this problem you are given two non-empty strings Aand B, both contain lower case English characters. You have to find the number of times B occurs as a substring of A.

 

Input

Input starts with an integer T (≤ 5), denoting the number of test cases.

Each case starts with two lines. First line contains A and second line contains B. You can assume than 1 ≤ length(A), length(B) ≤ 106.

 

Output

For each case, print the case number and the number of times B occurs as a substring of A.

 

Sample Input

4

axbyczd

abc

abcabcabcabc

abc

aabacbaabbaaz

aab

aaaaaa

aa

 

Sample Output

Case 1: 0

Case 2: 4

Case 3: 2

Case 4: 5

 

解题:裸KMP的使用。。。。。。。。。。

 

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cmath>
 5 #include <algorithm>
 6 #include <climits>
 7 #include <vector>
 8 #include <queue>
 9 #include <cstdlib>
10 #include <string>
11 #include <set>
12 #define LL long long
13 #define INF 0x3f3f3f3f
14 using namespace std;
15 int fail[1000010];
16 char str[1000020],p[1000010];
17 void getFail(int &len){
18     fail[0] = fail[1] = 0;
19     len = strlen(p);
20     for(int i = 1; i < len; i++){
21         int j = fail[i];
22         while(j && p[i] != p[j]) j = fail[j];
23         fail[i+1] = p[i] == p[j]?j+1:0;
24     }
25 }
26 int main(){
27     int t,i,j,len,ans,k = 1;
28     scanf("%d",&t);
29     while(t--){
30         scanf("%s%s",str,p);
31         getFail(len);
32         j = ans = 0;
33         for(i = 0; str[i]; i++){
34             while(j && str[i] != p[j]) j = fail[j];
35             if(str[i] == p[j]) j++;
36             if(j == len) ans++;
37         }
38         printf("Case %d: %d\n",k++,ans);
39     }
40     return 0;
41 }
View Code

 

转载于:https://www.cnblogs.com/crackpotisback/p/3871529.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值