Problem Longest Palindromic Subsequence
Description
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
Pretty straight-forward solution, using dynamic programming (斜对角,扎气球)
transition state function:
- Initialization
dp[i][i] = 1
- transition:
if (s.charAt(i) == s.charAt(j)) {
dp[i][j] = dp[i + 1][j - 1] + 2;
} else {
dp[i][j] = Math.max(dp[i + 1][j], dp[i][j - 1]);
}
Full Code
/**
* @author jacka
* @version 1.0 on 1/13/2018.
*/
public class Solution {
public int longestPalindromeSubseq(String s) {
final int[][] dp = new int[s.length()][s.length()];
for (int i = s.length() - 1; i >= 0; --i) {
dp[i][i] = 1;
for (int j = i + 1; j < s.length(); ++j) {
if (s.charAt(i) == s.charAt(j)) {
dp[i][j] = dp[i + 1][j - 1] + 2;
} else {
dp[i][j] = Math.max(dp[i + 1][j], dp[i][j - 1]);
}
}
}
return dp[0][s.length() - 1];
}
}