DescriptionThe 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 :) InputThe 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. outputFor each test case, output a single line with integer numbers in increasing order, denoting the possible length of the new baby's name. sample inputabcabababcababcababaaaaasample Output2 4 9 181 2 3 4 5 refer to others and learn a new usage of the next array. The next array is the essence of KMP. [cpp] # include # Include # Define maxn 400005 char a [maxn]; int next [maxn]; void prefix (int n) {int I = 0, j =-1; next [0] =-1; while (I <n) {while (j>-1 & a [j]! = A [I]) j = next [j]; I ++, j ++; next [I] = j ;}} void print (int n) {if (next [n]> 0) {print (next [n]); printf ("% d", next [n]) ;}} int main () {while (gets ()! = NULL) {int len = strlen (a); prefix (len); print (len); printf ("% d \ n", len) ;}return 0 ;}