(KMP)Period(H1358)
  W79oLdECuAdO 2023年11月02日 45 0


KMP算法的预处理部分.,,对计算到的第每一个序列进行比较,如果满足要求则输出(我是慢慢试出来的,)



//H1358
#include <iostream>
#include<stack>
#include<algorithm>
#include<time.h>
using namespace std;

#define N 1000010

int next[N];
int n,m;
char s[N];
void put()
{
	int i,j,k;
	for (i=0;i<=m+1;i++)
	{
		cout<<next[i]<<' ';
	}
	cout<<endl;
}


void  kmp()
{
	int i,j,k;
	i=0;
	j=-1;
	next[0]=-1;
	for (i=1;i<n;i++)
	{
		while (j>=0&&s[j+1]!=s[i])
			j=next[j];
		if (s[j+1]==s[i])
			j++;
		next[i]=j;
		//cout<<j<<' '<<next[i]<<' '<<i<<endl;
		//if (j>=0&&(j+2)%(next[i]+2)==0)
		//	printf("%d %d\n",j+2,next[i]+2);
		if (j>=0&&(i+1)%(i-j)==0)
			printf("%d %d\n",i+1,(i+1)/(i-j));
	}

}


int main()
{
	freopen("fuck.txt","r",stdin);
	int i,j,k;
	m=0;
	while (cin>>n)
	{
		if (n==0)
			break;
		//cout<<n<<endl;
		m++;
		scanf("%s",s);
		//cout<<s<<endl;
		//cout<<s<<endl;
		//get_next();
		printf("Test case #%d\n",m);
		kmp();
		printf("\n");
		//printf("%d\n",kmp());cout<<n<<' '<<m<<endl;put();
	}
	

	
	return 0;
}



Period


Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 992    Accepted Submission(s): 490



Problem Description


For each prefix of a given string S with N characters (each character has an ASCII code between 97 and 126, inclusive), we want to know whether the prefix is a periodic string. That is, for each i (2 <= i <= N) we want to know the largest K > 1 (if there is one) such that the prefix of S with length i can be written as A K , that is A concatenated K times, for some string A. Of course, we also want to know the period K.


 



Input


The input file consists of several test cases. Each test case consists of two lines. The first one contains N (2 <= N <= 1 000 000) – the size of the string S. The second line contains the string S. The input file ends with a line, having the number zero on it.


 



Output


For each test case, output “Test case #” and the consecutive test case number on a single line; then, for each prefix with length i that has a period K > 1, output the prefix size i and the period K separated by a single space; the prefix sizes must be in increasing order. Print a blank line after each test case.


 



Sample Input


3 aaa 12 aabaabaabaab 0


 



Sample Output


Test case #1 2 2 3 3 Test case #2 2 2 6 2 9 3 12 4


 



Recommend


JGShining






【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月08日 0

暂无评论

W79oLdECuAdO
作者其他文章 更多
最新推荐 更多