首页 > 其他 > 详细

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

时间:2017-11-11 00:11:53      阅读:198      评论:0      收藏:0      [点我收藏+]
  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求子串在主串中最多叠加次数

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!