POJ 3974 Palindrome Manacher演算法題解

來源:互聯網
上載者:User

標籤:blog   使用   os   io   for   ar   2014   amp   

本題就是求最長的迴文子串。

字串超長,不過限時卻是也很長的15秒,最長的限時之一題目了,如果限時短點的話,估計能過的人不多。

使用Mancher演算法是可以秒殺的。

模板式的Manacher演算法:

#include <stdio.h>#include <vector>#include <string.h>#include <algorithm>#include <iostream>#include <string>#include <limits.h>#include <stack>#include <queue>#include <set>#include <map>using namespace std;const int MAX_N = 1000002;char s[MAX_N<<1];int P[MAX_N<<1], len;inline int MIN(int a, int b) { return a < b? a : b; }inline int MAX(int a, int b) { return a > b? a : b; }void preProcess(){int i = len-1, j = len<<1;s[j+2] = '\0';s[j+1] = '#';for (; i >= 0; i--){s[j--] = s[i];s[j--] = '#';}s[0] = '~';}int Manacher(){len = strlen(s);preProcess();len = len << 1 | 1;int maxLen = 0, right = 0, cen = 0;for (int i = 1; i <= len; i++){P[i] = i<right? MIN(P[(cen<<1)-i], right-i) : 1;while (s[i-P[i]] == s[i+P[i]]) P[i]++;maxLen = MAX(maxLen, P[i]);if (right < i+P[i]) cen = i, right = i+P[i];}return maxLen-1;}int main(){int t = 1;while (gets(s) && strcmp(s, "END") != 0){printf("Case %d: %d\n", t++, Manacher());}return 0;}



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.