POJ 3974 Palindrome Manacher算法题解

本题就是求最长的回文子串。

字符串超长,不过限时却是也很长的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;
}



  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值