LPS - Longest Palindromic Substring

A palindrome is a string that is the same as its reverse. Example "malayalam", "dad", "appa" etc. In this problem you are asked to find the length of the longest contiguous substring of a given string, which is a palindrome.

Input

The first line consists of a single integer N, the number of characters in the string. 1 <= N <= 100000.

Second line is a string with N characters, where the characters are always lowercase English letters, i.e. 'a' to 'z'.

Output

A single line with an integer representing the length of longest palindromic substring.

Example
Input:
5
ababa

Output:
5


Added by:Srivatsan B
Date:2009-06-04
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:http://opc.iarcs.org.in/problems/iarcs-feb05-ad-1

hide comments
2015-09-29 04:38:36
is there some sort of error in the test cases since my same code (with some input output modifications) got ac in MSUBSTR ??
2015-09-20 20:19:45 B@dsh@h
is string with space to be considered or not?
2015-09-20 20:19:02 B@dsh@h
my solution is far correct but it gives me wrong ans...
2015-07-11 19:20:45 José Carlos Gutiérrez
fix the statement, in input there are characters that are not lower case english letters...
2015-06-23 14:29:55 Mohit Pandey
Wrong test cases!
1234xaba4321
AC sol gives ans 4!
2015-06-01 17:18:44 Siddharth Singh
O(N^2) Solution not Passing with C :(
2015-04-29 10:48:43 canhnht
tests like lol
2015-02-22 02:57:41 Duc
The test cases are pretty weak...
2015-01-15 22:51:07 Utkarsh Saxena
i think the test cases are faulty... an accepted solution using wrong concept of suffix arrays gives 4 as output for abcdshitdcba
2014-09-06 14:38:42 Dhruv
I getting WA after the judge runs test case 13. I even copied the solution from http://www.geeksforgeeks.org/longest-palindrome-substring-set-1/ and modified to suit the input/output format, still error after 13th testcase. Any pointers people?
I tried both C and java.
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.