516. Longest Palindromic Subsequence
Given a string s, find the longest palindromic subsequence's length in s. You may assume that the maximum length of s is 1000.
Example 1:
Input:
"bbbab"
Output:
4
One possible longest palindromic subsequence is "bbbb".
Example 2:
Input:
"cbbd"
Output:
2
One possible longest palindromic subsequence is "bb".
Solution: If the chars at i and j are the same. dp[i][j] = 2 + dp[i + 1][j - 1]. else to be the max of dp[i][j - 1], dp[i + 1][j].
public int longestPalindromeSubseq(String s) {
if (s.length() <= 1) {
return s.length();
}
int[][] dp = new int[s.length()][s.length()];
for (int i = 0; i < s.length(); i++) {
for (int j = i; j >= 0; j--) {
if (i == j) {
dp[i][j] = 1;
continue;
}
if (s.charAt(i) == s.charAt(j)) {
if(j + 1 == i) {
dp[j][i] = 2;
} else {
dp[j][i] = 2 + dp[j + 1][i - 1];
}
} else {
dp[j][i] = Math.max(dp[j + 1][i], dp[j][i - 1]);
}
}
}
return dp[0][s.length() - 1];
}