HDU2594 (Simpsons’ Hidden Talents)[KMP]

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594

一开始一直在纠结怎样从B串向A串构造fail指针,但其实不用这么麻烦,只需要把B串接到A串后面,对新串构造fail指针,然后在新串中找出满足长度小于两串长度的的最长前缀即可。

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
#include <bits/stdc++.h>
const int MAXN = 50009;
using namespace std;
char s1[MAXN*2];
char s2[MAXN];
int l1,l2;
int f[MAXN*2];
void getfail(char *P,int *f) {
int m=strlen(P);
f[0]=0;f[1]=0;
for(int i=1;i<m;i++) {
int j=f[i];
while(j&&P[i]!=P[j]) j=f[j];
f[i+1]=P[i]==P[j]?j+1:0;
}
}
int main() {
while(~scanf("%s%s",s1,s2)) {
l1=strlen(s1);
l2=strlen(s2);
strcpy(s1+l1,s2);
memset(f,0,sizeof(f));
getfail(s1,f);
int p=f[strlen(s1)];
while(p>l1||p>l2) p=f[p];
if(p==0) puts("0");
else {
for(int i=0;i<p;i++) printf("%c",s1[i]);
printf(" %d\n",p);
}
}
}