栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

LeetCode刷题python之301. 删除无效的括号

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

LeetCode刷题python之301. 删除无效的括号

给你一个由若干括号和字母组成的字符串 s ,删除最小数量的无效括号,使得输入的字符串有效。

返回所有可能的结果。答案可以按 任意顺序 返回。

示例 1:

输入:s = "()())()"
输出:["(())()","()()()"]
示例 2:

输入:s = "(a)())()"
输出:["(a())()","(a)()()"]
示例 3:

输入:s = ")("
输出:[""]

提示:

1 <= s.length <= 25
s 由小写英文字母以及括号 '(' 和 ')' 组成
s 中至多含 20 个括号

代码:

class Solution:
    def removeInvalidParentheses(self, s: str) -> List[str]:
        left, right = 0, 0
        for c in s:
            if c == '(':
                left += 1
            elif c == ')':
                if left == 0:
                    right += 1
                else:
                    left -= 1
            else:
                pass
        
        # - check if valid
        def is_valid(s):
            level = 0
            for c in s:
                if c == '(':
                    level += 1
                elif c == ')':
                    if level == 0:
                        return False
                    else:
                        level -= 1
                else:
                    pass

            return level==0

        # - dfs
        def dfs(s, index, left, right, res):
            """
            from index to find ( or ),
            left and right means how many ( and ) to remove
            """

            # - exit check
            if (left == 0) and (right == 0) and is_valid(s):
                res.append(s)
                return

            for i in range(index, len(s)):
                c = s[i]
                if c in ['(', ')']:
                    # - if continous ( or ), only use first one
                    if (i > 0) and (c == s[i-1]): continue

                    # - try remove ( or )
                    if (c == ')') and (right > 0):
                        dfs(s[:i]+s[i+1:], i, left, right-1, res)
                    elif (c == '(') and (left > 0):
                        dfs(s[:i]+s[i+1:], i, left-1, right, res)
                    else:
                        pass

        # - start here
        res = []
        dfs(s, 0, left, right, res)
        
        return list(set(res))

解题思路:https://leetcode-cn.com/problems/remove-invalid-parentheses/solution/bfsjian-dan-er-you-xiang-xi-de-pythonjiang-jie-by-/

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/350054.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号