KMP session POJ2752

Source: Internet
Author: User

KMP session POJ2752

F-kmp
Time Limit: 2000 MS Memory Limit: 65536KB 64bit IO Format: % I64d & % I64u
Submit

Status

Practice

POJ 2752
Description
The little cat is so famous, that could 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, cocould 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

/*********************************     author   : Grant Yuan     algorithm; kmp     source   : POJ 2752  time    ;2014/10/3 20:38 *********************************/   #include
 
  #include
  
   #include
   
    #include
    
     #include#define MAX  400007using namespace std;int next[MAX];char s[MAX];int ans;int l;int sum[MAX];void get_next(){    next[0]=-1;    int j=-1;    int i=0;    while(i
     
      =0;--i)             printf("%d ",sum[i]);       printf("%d\n",l);}    return 0;}
     
    
   
  
 


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.