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

Manacher模版

时间:2014-12-07 06:27:24      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   os   sp   for   strong   

求字符串中出现过的最长回文子串

  1. const int MAXN = 110010;  
  2. //字符串长度<MAXN  
  3. char Ma[MAXN * 2];  
  4. int Mp[MAXN * 2];  
  5. int Manacher(char s[]) {  
  6.     int l = 0, len = strlen(s);  
  7.     Ma[l++] = ‘$‘;  
  8.     Ma[l++] = ‘#‘;  
  9.     for (int i = 0; i<len; i++)  {  
  10.         Ma[l++] = s[i];  
  11.         Ma[l++] = ‘#‘;  
  12.     }  
  13.     Ma[l] = 0;  
  14.     int mx = 0, id = 0;  
  15.     for (int i = 0; i<l; i++)  {  
  16.         Mp[i] = mx>i ? min(Mp[2 * id - i], mx - i) : 1;  
  17.         while (Ma[i + Mp[i]] == Ma[i - Mp[i]])Mp[i]++;  
  18.         if (i + Mp[i]>mx)   {  
  19.             mx = i + Mp[i];    id = i;  
  20.         }  
  21.     }  
  22.     int ans = 0;  
  23.     for (int i = 0; i<2 * len + 2; i++)  
  24.         ans = max(ans, Mp[i] - 1);  
  25.     return ans;  

Manacher模版

标签:style   blog   http   io   ar   os   sp   for   strong   

原文地址:http://www.cnblogs.com/yuyanbian/p/4149062.html

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