poj 2406 Power Strings【kmp】

电玩女神 2022-08-21 02:17 128阅读 0赞

Power Strings

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

  1. abcd
  2. aaaa
  3. ababab
  4. .

Sample Output

  1. 1
  2. 4
  3. 3

题意:给以字符串【长度小于壹佰万】,字符串一定为某一长度的前缀重复多次组成的,求这个字符串是由该长度的前缀重复几次组成的?

解析:设前缀重复n次,则字符串长度len%n==0;根据next数组的意义,n = len - next[len];则出现次数为k = len / (len - next[len]);

Accept代码【C++】 【110MS】

  1. #include <cstdio>
  2. #include <cstring>
  3. using namespace std;
  4. char str[1000001];
  5. int p[1000001];
  6. void get_p(int len) {
  7. int i = 0, j = -1;
  8. p[0] = -1;
  9. while(i != len) {
  10. if(j == -1 || str[i] == str[j])
  11. p[++i] = ++j;
  12. else
  13. j = p[j];
  14. }
  15. }
  16. int main() {
  17. while(scanf("%s", str), str[0] != '.') {
  18. int len = strlen(str);
  19. get_p(len);
  20. int a = 0;
  21. if(len % (len - p[len]) == 0)
  22. printf("%d\n", len / (len - p[len]));
  23. else
  24. printf("1\n");
  25. }
  26. return 0;
  27. }

发表评论

表情:
评论列表 (有 0 条评论,128人围观)

还没有评论,来说两句吧...

相关阅读