LeetCode第132题—分隔回文串II—Python实现

Posted StriveZs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode第132题—分隔回文串II—Python实现相关的知识,希望对你有一定的参考价值。


title: LeetCode No.132

categories:

  • OJ
  • LeetCode

tags:

  • Programing
  • LeetCode
  • OJ

LeetCode第132题—分隔回文串II

自己代码的开源仓库:click here 欢迎Star和Fork 😃

题目描述

给你一个字符串 s,请你将 s 分割成一些子串,使每个子串都是回文。

返回符合要求的 最少分割次数 。

示例 1:

输入:s = "aab"
输出:1
解释:只需一次分割就可将 s 分割成 ["aa","b"] 这样两个回文子串。
示例 2:

输入:s = "a"
输出:0
示例 3:

输入:s = "ab"
输出:1
 

提示:

1 <= s.length <= 2000
s 仅由小写英文字母组成

代码

class Solution(object):
    # fixme:判断是否是回文串
    def isPalindrome(self, s):
        if s == s[::-1]:
            return True
        return False
    # fixme:回溯法超时版本
    def time_out(self, s):
        """
        最终的结果,每个字符单独拿出来肯定是一个回文串, 因此不存在空字符串结果的情况,除非输入就是空串
        算法考虑的话,有两种方法:
            1. 动态规划
            2. 回溯法
        :type s: str
        :rtype: List[List[str]]
        """
        res = []
        # 回溯法
        def backtrack(s, res, path):
            if not s:
                res.append(len(path))
                return
            for i in range(1, len(s) + 1):  # 注意起始和结束位置
                if self.isPalindrome(s[:i]):
                    backtrack(s[i:], res, path + [s[:i]])
        backtrack(s,res,[])
        return min(res)-1

    # fixme:动态规划版本
    def minCut(self, s):
        dp = [i for i in range(len(s))] # 创建dp数组  0-len(s)-1 最少划分0次最多都划分完
        for i in range(len(s)):
            for j in range(i+1):
                temp = s[j:i+1]
                # 如果是回文串
                if temp == temp[::-1]:
                    if j > 0:
                        dp[i] = min(dp[i], dp[j - 1] + 1)
                    else:
                        dp[i] = 0
        return dp[len(s) - 1]

以上是关于LeetCode第132题—分隔回文串II—Python实现的主要内容,如果未能解决你的问题,请参考以下文章

leetcode——132. 分割回文串 II

Leetcode No.132 分割回文串 II(动态规划)

Leetcode No.132 分割回文串 II(动态规划)

LeetCode第131题—分隔回文串—Python实现

132 Palindrome Partitioning II 分割回文串 II

LeetCode每日一题刷题总结