zoukankan      html  css  js  c++  java
  • LC 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".

    Runtime: 128 ms, faster than 59.09% of C++ online submissions for Longest Palindromic Subsequence.
    Memory Usage: 90.5 MB, less than 0.79% of C++ online submissions for Longest Palindromic Subsequence.
     
     
    class Solution {
    public:
      int longestPalindromeSubseq(string s) {
        int N = s.size();
        vector<vector<int>> dp(N, vector<int>(N,0));
        for(int i=0; i<N; i++) {
          dp[i][i] = 1;
        }   
        for(int gap=1; gap<s.size(); gap++) {
          for(int i=0; i<N; i++) {
            int j = i+gap;
            if(i+gap >= N) continue;
            if(s[i] == s[j]) {
              dp[i][j] = dp[i+1][j-1]+2;
            } else {
              dp[i][j] = max(dp[i+1][j],dp[i][j-1]);
            }   
          }   
        }   
        return dp[0][N-1];
      }
    };
  • 相关阅读:
    display:flex 布局之 骰子
    vue 生命周期
    vue webpack 懒加载
    后台管理页面基本布局
    模拟ie9的placeholder
    常用的功能封装 pool.js
    六位数字字母验证码
    CommonJs AMD CMD
    项目封版后的总结
    jq 回到顶部
  • 原文地址:https://www.cnblogs.com/ethanhong/p/10361246.html
Copyright © 2011-2022 走看看