你好,欢迎来到电脑编程技巧与维护杂志社! 杂志社简介广告服务读者反馈编程社区  
合订本订阅
 
 
您的位置:技术专栏 / C专栏
poj 2406 Power Strings
 
Power Strings
Time Limit: 3000MS Memory Limit: 65536K
Total Submissions: 33636 Accepted: 13973

Description

Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcdef". If we think of concatenation as multiplication, exponentiation by a non-negative integer is defined in the normal way: a^0 = "" (the empty string) and a^(n+1) = a*(a^n).

Input

Each test case is a line of input representing s, a string of printable characters. The length of s will be at least 1 and will not exceed 1 million characters. A line containing a period follows the last test case.

Output

For each s you should print the largest n such that s = a^n for some string a.

Sample Input

abcd
aaaa
ababab
.

Sample Output

1
4

3

题目大意:给出一个字符串,求这个串是有几个子串构成的 思路:用KMP算法中的next数组,这个字符串的next数组里边,字符串的总长度减去最后一个字符所对应的next值就是子串的长度 具体为什么,应该是next数组的值是根据这个字符串本身,用一定规则得出的,这个真的好巧妙的说,kmp算法,好好看看。 2014,12,5

#include
#include
char x[1100000];
int next[1100000];
void getnext(char s[]){
	int len1,i,j;
	len1=strlen(s);
	i=0;j=-1;
	next[i]=j;
	while(i
  推荐精品文章

·2024年9月目录 
·2024年8月目录 
·2024年7月目录 
·2024年6月目录 
·2024年5月目录 
·2024年4月目录 
·2024年3月目录 
·2024年2月目录 
·2024年1月目录
·2023年12月目录
·2023年11月目录
·2023年10月目录
·2023年9月目录 
·2023年8月目录 

  联系方式
TEL:010-82561037
Fax: 010-82561614
QQ: 100164630
Mail:gaojian@comprg.com.cn

  友情链接
 
Copyright 2001-2010, www.comprg.com.cn, All Rights Reserved
京ICP备14022230号-1,电话/传真:010-82561037 82561614 ,Mail:gaojian@comprg.com.cn
地址:北京市海淀区远大路20号宝蓝大厦E座704,邮编:100089