A long long Message
Time Limit: 4000MS |
|
Memory Limit: 131072K |
Total Submissions: 22564 |
|
Accepted: 9255 |
Case Time Limit: 1000MS |
Description
The little cat is majoring in physics in the capital of Byterland. A piece of sad news comes to him these days:his mother is getting ill. Being worried about spending so much in railway tickets (Byterland is such a big country, and he have to spend all shours on Train to him hometown), he decided only to send SMS with his mother.
The little cat lives in a Unrich family, so he frequently comes to the Mobile service center, to check how much money he Have spent on SMS. Yesterday, the computer of service center was broken, and printed, very long messages. The brilliant little cat soon found out:
1. All characters in messages is lowercase Latin letters, without punctuations and spaces.
2. All SMS have been appended other– (i+1)-th SMS comes directly after the i-th one–that are why those Es is quite long.
3. His own SMS have been appended together, but possibly a great many redundancy characters appear leftwards and rightwards Due to the broken computer.
E.g:if his SMS was "motheriloveyou", either long message printed by, the would possibly be one of "Hahamotherilov Eyou "," motheriloveyoureally "," Motheriloveyouornot "," bbbmotheriloveyouaaa ", etc.
4. For these broken issues, the little cat have printed his original text twice (so there appears, very long messages). Even though the original text remains the same in both printed messages, the redundancy characters on both sides would is P Ossibly different.
You are given those-very long messages, and you had to output the length of the longest possible original text Writte n by the little cat.
Background:
The SMS in Byterland Mobile service is charging in Dollars-per-byte. That's why the little cat was worrying about how long could the longest original text being.
Why do I ask you to write a program? There is four resions:
1. The little cat is so busy these days with physics lessons;
2. The little cat wants to keep what he said to his mother Seceret;
3. POJ is such a great Online Judge;
4. The little cat wants to earn some money from POJ, and try to persuade he mother to see the Doctor:(
Input
The strings with lowercase letters on the input lines individually. Number of characters in each one would never exceed 100000.
Output
A number–what is the maximum length of the original text written by the little cat.
Sample Input
Yeshowmuchiloveyoumydearmotherreallyicannotbelieveityeaphowmuchiloveyoumydearmother
Sample Output
27
Give you two strings of characters to find the oldest string in both strings.
1#include <iostream>2#include <cstdio>3#include <cstring>4#include <cmath>5#include <algorithm>6#include <string>7#include <vector>8#include <stack>9#include <queue>Ten#include <Set> One#include <map> A#include <list> -#include <iomanip> -#include <cstdlib> the using namespacestd; - Const intinf=0x5fffffff; - Const Doubleexp=1e-8; - Const intms=200005; + //KMP TRIE DFA SUFFIX - intdp[ms][ -];//RMQ + intT1[ms],t2[ms],c[ms],v[ms]; A intRank[ms],sa[ms],height[ms]; at CharStr[ms],str1[ms]; - intS[ms]; - intcmpint*r,intAintBintk) - { - returnr[a]==r[b]&&r[a+k]==r[b+K]; - } in - voidGet_sa (int(RNint*sa,intNintm) to { + inti,j,p,*x=t1,*y=T2; - for(i=0; i<m;i++) thec[i]=0; * for(i=0; i<n;i++) $c[x[i]=r[i]]++;Panax Notoginseng for(i=1; i<m;i++) -c[i]+=c[i-1]; the for(i=n-1; i>=0; i--) +sa[--c[x[i]]]=i; Ap=1; j=1; the for(;p <n;j*=2, m=p) + { - for(p=0, i=n-j;i<n;i++) $y[p++]=i; $ for(i=0; i<n;i++) - if(sa[i]>=j) -y[p++]=sa[i]-J; the for(i=0; i<n;i++) -v[i]=X[y[i]];Wuyi for(i=0; i<m;i++) thec[i]=0; - for(i=0; i<n;i++) Wuc[v[i]]++; - for(i=1; i<m;i++) Aboutc[i]+=c[i-1]; $ for(i=n-1; i>=0; i--) -sa[--c[v[i]]]=Y[i]; - swap (x, y); -x[sa[0]]=0; A for(p=1, i=1; i<n;i++) +X[SA[I]]=CMP (y,sa[i-1],sa[i],j)? p1:p + +; the } - } $ the voidGet_height (int*r,intN) the { the inti,j,k=0; the for(i=1; i<=n;i++) -rank[sa[i]]=i; in //height[i]>=height[i-1]-1; the for(i=0; i<n;i++) the { About if(k) thek--; the Else thek=0; +j=sa[rank[i]-1]; - while(r[i+k]==r[j+K]) thek++;Bayiheight[rank[i]]=K; the } the } - - intMain () the { thescanf"%s%s", STR,STR1); the intn=0, len=strlen (str); the for(intI=0; i<len;i++) -s[n++]=str[i]-'a'+1; thes[n++]= -;//Separators thelen=strlen (str1); the for(intI=0; i<len;i++)94s[n++]=str1[i]-'a'+1; thes[n]=0;//to facilitate comparison theGet_sa (s,sa,n+1, -); the get_height (s,n);98 intmaxv=0; Aboutlen=strlen (str); - for(intI=2; i<n;i++)101 {102 if(height[i]>MAXV)103 {104 if(0<=sa[i-1]&&sa[i-1]<len&&len<Sa[i]) themaxv=Height[i];106 if(0<=sa[i]&&sa[i]<len&&len<sa[i-1])107maxv=Height[i];108 }109 } theprintf"%d\n", MAXV);111 return 0; the}
A long long Message suffix array entry question