poj 2406 - Power Strings (KMP 최소 순환 절 구 함)

2033 단어 데이터 구조
Power Strings
Time Limit: 3000MS
 
Memory Limit: 65536K
Total Submissions: 33178
 
Accepted: 13792
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

Hint
This problem has huge input, use scanf instead of cin to avoid time limit exceed.
Source
Waterloo local 2002.07.01
next 배열 로 전체 배열 의 최대 접 두 사 를 구 합 니 다. 전체 문자열 이 순환 절 로 구성 되 어 있다 면 n - next [n] 즉 최소 순환 절 입 니 다. 최소 순환 절 은 n 으로 정 리 됩 니 다.
 
#include 
#include 
#include 
int next[1100000] ;
char str[1100000] ;
void getnext(int l)
{
    int j = 0 , k = -1 ;
    next[0] = -1 ;
    while(j < l)
    {
        if( k == -1 || str[j] == str[k] )
        {
            j++ ;
            k++ ;
            next[j] = k ;
        }
        else
            k = next[k] ;
    }
}
int main()
{
    int l , m ;
    while(scanf("%s", str)!=EOF)
    {
        if( str[0] == '.' ) break;
        l = strlen(str);
        getnext(l) ;
        m = next[l];
        if( l % (l-m) != 0 )
            printf("1
"); else { m = l / ( l-m ); printf("%d
", m); } memset(str,0,sizeof(str)); } return 0; }

좋은 웹페이지 즐겨찾기