Seek the Name, Seek the Fame(kmp)

Description

The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked the little cat to give names to their newly-born babies. They seek the name, and at the same time seek the fame. In order to escape from such boring job, the innovative little cat works out an easy but fantastic algorithm:

Step1. Connect the father’s name and the mother’s name, to a new string S.
Step2. Find a proper prefix-suffix string of S (which is not only the prefix, but also the suffix of S).

Example: Father=‘ala’, Mother=‘la’, we have S = ‘ala’+‘la’ = ‘alala’. Potential prefix-suffix strings of S are {‘a’, ‘ala’, ‘alala’}. Given the string S, could you help the little cat to write a program to calculate the length of possible prefix-suffix strings of S? (He might thank you by giving your baby a name:)
Input

The input contains a number of test cases. Each test case occupies a single line that contains the string S described above.

Restrictions: Only lowercase letters may appear in the input. 1 <= Length of S <= 400000.
Output

For each test case, output a single line with integer numbers in increasing order, denoting the possible length of the new baby’s name.
Sample Input

ababcababababcabab
aaaaa
Sample Output

2 4 9 18
1 2 3 4 5

对于一个字符串s,找出所有相同的前缀后缀长度.
神奇的kmp。。。

kmp

#include
#include 
char a[400005];
int next[400005]={-1},s1;
void get_next(){
	int j=0,k=-1;
	while(j<s1){
		if(k==-1||a[k]==a[j]){
			j++;k++;
			next[j]=k;//可以得出next[s1]
		}
		else {
			k=next[k];
		}
	}
}
int main(void)
{
	int i,j,n,x,y,m,c,ans[400005];
	while(~scanf("%s",&a)){
		s1=strlen(a);
		get_next();
		j=next[s1];
		c=0;
		while(j>0){
			ans[c++]=j;
			j=next[j];
		}
		for(i=c-1;i>=0;i--) 
			printf("%d ",ans[i]);
			printf("%d\n",s1);
	}
	return 0;
}

hash

#include
#include 
char a[400005];
int next[400005]={-1},s1;
void get_next(){
	int j=0,k=-1;
	while(j<s1){
		if(k==-1||a[k]==a[j]){
			j++;k++;
			next[j]=k;
		}
		else {
			k=next[k];
		}
	}
}
int main(void)
{
	int i,j,n,x,y,m,k,c,ans[400005],p=27;
	while(~scanf("%s",&a)){
		s1=strlen(a);
		x=y=0;
		k=1;
		int f=0;
		for(i=0,j=s1-1;i<s1;j--,i++){
			x=x*p+a[i]-'a'+1;
			y=y+(a[j]-'a'+1)*k;
			if(x==y){
				if(f) printf(" ");
				else f=1;
				printf("%d",i+1);
			}
			k=k*p;
		}
		printf("\n");
	}
	return 0;
}

你可能感兴趣的:(算法)