博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Palindrome [Manecher]
阅读量:4364 次
发布时间:2019-06-07

本文共 2351 字,大约阅读时间需要 7 分钟。

Palindrome

Time Limit: 15000MS

Memory Limit: 65536K

Total Submissions: 12214

Accepted: 4583

Description

Andy the smart computer science student was attending an algorithms class when the professor asked the students a simple question, "Can you propose an efficient algorithm to find the length of the largest palindrome in a string?"

A string is said to be a palindrome if it reads the same both forwards and backwards, for example "madam" is a palindrome while "acm" is not.

The students recognized that this is a classical problem but couldn't come up with a solution better than iterating over all substrings and checking whether they are palindrome or not, obviously this algorithm is not efficient at all, after a while Andy raised his hand and said "Okay, I've a better algorithm" and before he starts to explain his idea he stopped for a moment and then said "Well, I've an even better algorithm!".

If you think you know Andy's final solution then prove it! Given a string of at most 1000000 characters find and print the length of the largest palindrome inside this string.

Input

Your program will be tested on at most 30 test cases, each test case is given as a string of at most 1000000 lowercase characters on a line by itself. The input is terminated by a line that starts with the string "END" (quotes for clarity).

Output

For each test case in the input print the test case number and the length of the largest palindrome.

Sample Input

abcbabcbabcba

abacacbaaaab
END

Sample Output

Case 1: 13

Case 2: 6

题解

求解最长回文子串的长度

本来是想练hash的,思路:hash+二分,时间复杂度\(O(T*len*log(len))\),其中T为组数,最大为30,len最大为1e6,肯定是过不了的,但是抱着既然是练习hash的心请,多打几遍也没事.然后就硬着头皮写下去,结果一个上午没有调出来,天衣无缝~~~
然后我含恨而去,学习了manacher,发现挺简单的,想学习的推荐博客(真的很好理解,讲得很好)
原代码我一定会调出来的

Code

#include
#include
#include
#include
#define Min(a,b) (a)<(b)?(a):(b)#define Max(a,b) (a)>(b)?(a):(b)#define in(i) (i=read())using namespace std;int read() { int ans=0,f=1; char i=getchar(); while(i<'0' || i>'9') {if(i=='-') f=-1; i=getchar();} while(i>='0' && i<='9') {ans=(ans<<1)+(ans<<3)+i-'0'; i=getchar();} return ans*f;}int n;char s[1000010],s_new[2000010];int p[2000010];int init() { int len=strlen(s),j=2; s_new[0]='$'; s_new[1]='#'; for(int i=0;i

博主蒟蒻,随意转载.但必须附上原文链接

转载于:https://www.cnblogs.com/real-l/p/9366668.html

你可能感兴趣的文章
mybatis学习笔记
查看>>
使用淘宝 NPM 镜像
查看>>
zabbix 乱码的问题
查看>>
Swift 学习之二十一:?和 !(详解)
查看>>
Laravel
查看>>
二分图匹配
查看>>
Day032--Python--操作系统, process进程
查看>>
highcharts-Highmaps 动态传入城市名称
查看>>
english interview
查看>>
寒假222_codeforces 290 div 2 D
查看>>
open-falcon(v0.2)部署手册(源码编译)
查看>>
大明A+B(hdu1753)大数,java
查看>>
局部变量&&malloc函数&&生命周期的一些见解
查看>>
springboot打jar包,调用webservice出错
查看>>
一审七个月了
查看>>
xth的旅行(codevs 1450)
查看>>
sql 表有没有自增列,插入自增列值
查看>>
php ajax请求判断
查看>>
sqlserver 行列旋转
查看>>
Winform圆角窗体绘制
查看>>