Longest Palindromic Substring - Amazon Top Interview Questions


Problem Statement :


Given a string s, return the length of the longest palindromic substring.

Constraints

n ≤ 1,000 where n is the length of s

Example 1

Input

s = "mactacocatbook"

Output

7

Explanation

"tacocat" in the middle is the longest palindromic substring.



Solution :



title-img




                        Solution in C++ :

class Solution {
    vector<vector<int>> memo;
    int dp(string &s, int i, int j) {
        if (i > j) return 0;
        if (i == j) return 1;
        if (memo[i][j] != -1)  // Return precaluclated value.
            return memo[i][j];
        // When s[i]==s[j] and the maximum palindrome in between is of length j-i-1 (This means
        // string i+1,j-1 is a palindrome) return current length.
        if (s[i] == s[j] && dp(s, i + 1, j - 1) == j - 1 - i) return memo[i][j] = j - i + 1;
        // When current substring is not a pallindrome return max palindrome between (i,j-1) and
        // (i+1,j)
        return memo[i][j] = max(dp(s, i, j - 1), dp(s, i + 1, j));
    }

    public:
    int solve(string &s) {
        memo.resize(s.length(), vector<int>(s.length(), -1));
        return dp(s, 0, s.length() - 1);
    }
};
int solve(string s) {
    return Solution().solve(s);
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(String s) {
        int res = 0;
        for (int i = 0; i < s.length(); i++) {
            int len1 = helper(s, i, i);
            int len2 = helper(s, i, i + 1);
            res = Math.max(len1, Math.max(len2, res));
        }
        return res;
    }

    public int helper(String s, int l, int r) {
        while (l >= 0 && r < s.length() && s.charAt(l) == s.charAt(r)) {
            l--;
            r++;
        }
        return r - l - 1;
    }
}
                    


                        Solution in Python : 
                            
def manacher(s):
    t = "#".join([""] + list(s) + [""])
    m = len(t)
    a = [0] * m
    l = 0
    r = -1
    for i in range(m):
        j = 1 if i > r else min(r - i + 1, a[l + r - i])
        while i >= j and i + j < m and t[i - j] == t[i + j]:
            j += 1
        a[i] = j
        j -= 1
        if i + j > r:
            l = i - j
            r = i + j
    return a


class Solution:
    def solve(self, s):
        return max(manacher(s)) - 1
                    


View More Similar Problems

Direct Connections

Enter-View ( EV ) is a linear, street-like country. By linear, we mean all the cities of the country are placed on a single straight line - the x -axis. Thus every city's position can be defined by a single coordinate, xi, the distance from the left borderline of the country. You can treat all cities as single points. Unfortunately, the dictator of telecommunication of EV (Mr. S. Treat Jr.) do

View Solution →

Subsequence Weighting

A subsequence of a sequence is a sequence which is obtained by deleting zero or more elements from the sequence. You are given a sequence A in which every element is a pair of integers i.e A = [(a1, w1), (a2, w2),..., (aN, wN)]. For a subseqence B = [(b1, v1), (b2, v2), ...., (bM, vM)] of the given sequence : We call it increasing if for every i (1 <= i < M ) , bi < bi+1. Weight(B) =

View Solution →

Kindergarten Adventures

Meera teaches a class of n students, and every day in her classroom is an adventure. Today is drawing day! The students are sitting around a round table, and they are numbered from 1 to n in the clockwise direction. This means that the students are numbered 1, 2, 3, . . . , n-1, n, and students 1 and n are sitting next to each other. After letting the students draw for a certain period of ti

View Solution →

Mr. X and His Shots

A cricket match is going to be held. The field is represented by a 1D plane. A cricketer, Mr. X has N favorite shots. Each shot has a particular range. The range of the ith shot is from Ai to Bi. That means his favorite shot can be anywhere in this range. Each player on the opposite team can field only in a particular range. Player i can field from Ci to Di. You are given the N favorite shots of M

View Solution →

Jim and the Skyscrapers

Jim has invented a new flying object called HZ42. HZ42 is like a broom and can only fly horizontally, independent of the environment. One day, Jim started his flight from Dubai's highest skyscraper, traveled some distance and landed on another skyscraper of same height! So much fun! But unfortunately, new skyscrapers have been built recently. Let us describe the problem in one dimensional space

View Solution →

Palindromic Subsets

Consider a lowercase English alphabetic letter character denoted by c. A shift operation on some c turns it into the next letter in the alphabet. For example, and ,shift(a) = b , shift(e) = f, shift(z) = a . Given a zero-indexed string, s, of n lowercase letters, perform q queries on s where each query takes one of the following two forms: 1 i j t: All letters in the inclusive range from i t

View Solution →