forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlongest-palindromic-substring.py
47 lines (41 loc) · 1.44 KB
/
longest-palindromic-substring.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Time: O(n)
# Space: O(n)
#
# Given a string S, find the longest palindromic substring in S.
# You may assume that the maximum length of S is 1000,
# and there exists one unique longest palindromic substring.
#
# Manacher's Algorithm
# http://leetcode.com/2011/11/longest-palindromic-substring-part-ii.html
class Solution:
def longestPalindrome(self, s):
string = self.preProcess(s)
palindrome = [0] * len(string)
center, right = 0, 0
for i in xrange(1, len(string) - 1):
i_mirror = 2 * center - i
if right > i:
palindrome[i] = min(right - i, palindrome[i_mirror])
else:
palindrome[i] = 0
while string[i + 1 + palindrome[i]] == string[i - 1 - palindrome[i]]:
palindrome[i] += 1
if i + palindrome[i] > right:
center, right = i, i + palindrome[i]
max_len, max_center = 0, 0
for i in xrange(1, len(string) - 1):
if palindrome[i] > max_len:
max_len = palindrome[i]
max_center = i
start = (max_center - 1 - max_len) / 2
return s[start : start + max_len]
def preProcess(self, s):
if not s:
return "^$"
string = "^"
for i in s:
string += "#" + i
string += "#$"
return string
if __name__ == "__main__":
print Solution().longestPalindrome("abb")