Bzoj 1355---Radio Transmission(KMP)
阿新 • • 發佈:2018-07-31
space str -- tran ext pri ios col ...
傳送門
由於我們知道KMP中的p[n](有的是next)存的是最長的長度,因此我們只需要將n-p[n]便可......
1 #include<cstdio> 2 #include<iostream> 3 #include<cmath> 4 #include<cstring> 5 #include<algorithm> 6 #include<cstdlib> 7 using namespace std; 8 int p[1000005],n; 9 char st[1000005]; 10 void pre()11 { 12 int j=0; 13 p[0]=0; 14 for (int i=1; i<=n; i++){ 15 while (j>0 && st[j+1]!=st[i+1]) j=p[j]; 16 if (st[j+1]==st[i+1]) j++; 17 p[i+1]=j; 18 } 19 } 20 int main() 21 { 22 scanf("%d\n",&n); 23 cin>>st+1; 24 pre();25 printf("%d\n",n-p[n]); 26 return 0; 27 }
miao~~~
Bzoj 1355---Radio Transmission(KMP)