码迷,mamicode.com
首页 > 其他好文 > 详细

poj 2406 Power Strings求子串在主串中最多叠加次数

时间:2017-11-11 00:27:18      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:span   nbsp   define   roc   main   std   次数   string   pre   

  1. #include<stdio.h>  
  2. #define M 1000010  
  3. int n,next[M];  
  4. char s[M];  
  5. void getNext()  
  6. {  
  7.         int i=1,j=-1;  
  8.         next[0]=-1;  
  9.         for(;s[i];i++){  
  10.                 while(j!=-1&&s[j+1]!=s[i])j=next[j];  
  11.                 if(s[j+1]==s[i])j++;  
  12.                 next[i]=j;  
  13.         }  
  14.         n=i;  
  15. }  
  16. int main()  
  17. {  
  18.         while(scanf("%s",s),s[0]!=‘.‘){  
  19.                 getNext();  
  20.                 if(n%(n-next[n-1]-1))puts("1");  
  21.                 else printf("%d\n",n/(n-next[n-1]-1));  
  22.         }  
  23.         return 0;  
  24. }  

poj 2406 Power Strings求子串在主串中最多叠加次数

标签:span   nbsp   define   roc   main   std   次数   string   pre   

原文地址:http://www.cnblogs.com/lozjl/p/7816810.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!