leetcode - 1249. Minimum Remove to Make Valid Parentheses

Description

Given a string s of '(' , ')' and lowercase English characters.

Your task is to remove the minimum number of parentheses ( '(' or ')', in any positions ) so that the resulting parentheses string is valid and return any valid string.

Formally, a parentheses string is valid if and only if:

复制代码
It is the empty string, contains only lowercase characters, or
It can be written as AB (A concatenated with B), where A and B are valid strings, or
It can be written as (A), where A is a valid string.

Example 1:

复制代码
Input: s = "lee(t(c)o)de)"
Output: "lee(t(c)o)de"
Explanation: "lee(t(co)de)" , "lee(t(c)ode)" would also be accepted.

Example 2:

复制代码
Input: s = "a)b(c)d"
Output: "ab(c)d"

Example 3:

复制代码
Input: s = "))(("
Output: ""
Explanation: An empty string is also valid.

Constraints:

复制代码
1 <= s.length <= 10^5
s[i] is either'(' , ')', or lowercase English letter.

Solution

List

Go through the string from left to right, use a left_cnt to keep track of how many ( we have visited, and decrease when there's a ), discard redundant ) during this process.

Go through the string again, this time from right to left, use a right_cnt to keep track of how may ) we have, and decrease when there's a (, discard ( this time.

Time complexity: o ( n ) o(n) o(n)

Space complexity: o ( n ) o(n) o(n)

Stack

Use a stack to store all the (, and pop when there's a ), at the end, all the remaining (s are those we need to discard.

Time complexity: o ( n ) o(n) o(n)

Space complexity: o ( n ) o(n) o(n)

Code

List

python3 复制代码
class Solution:
    def minRemoveToMakeValid(self, s: str) -> str:
        left_cnt = 0
        res = []
        for i in range(len(s)):
            if s[i] not in ('(', ')'):
                res += s[i]
            elif s[i] == '(':
                res += s[i]
                left_cnt += 1
            elif s[i] == ')' and left_cnt > 0:
                res += s[i]
                left_cnt -= 1
        right_cnt = 0
        new_res = ''
        for i in range(len(res) - 1, -1, -1):
            if res[i] not in ('(', ')'):
                new_res += res[i]
            elif res[i] == ')':
                new_res += res[i]
                right_cnt += 1
            elif res[i] == '(' and right_cnt > 0:
                new_res += res[i]
                right_cnt -= 1
        return new_res[::-1]

Stack

python3 复制代码
class Solution:
    def minRemoveToMakeValid(self, s: str) -> str:
        stack = []
        discard = []
        for i in range(len(s)):
            if s[i] == '(':
                stack.append(i)
            elif s[i] == ')':
                if stack:
                    stack.pop()
                else:
                    discard.append(i)
        discard += stack
        res = []
        for i in range(len(s)):
            if i not in discard:
                res.append(s[i])
        return ''.join(res)
相关推荐
元亓亓亓1 分钟前
LeetCode热题100--20. 有效的括号--简单
linux·算法·leetcode
熊猫_豆豆6 分钟前
LeetCode 49.字母异位组合 C++解法
数据结构·算法·leetcode
Eric.Lee20218 分钟前
mujoco构建无物理约束的几何体运动
python·物理引擎·mujoco·物理模型仿真
wadesir25 分钟前
用Python实现ggplot2风格绘图(零基础入门Seaborn与Matplotlib美化技巧)
开发语言·python·matplotlib
ㄣ知冷煖★1 小时前
基于openEuler操作系统的图神经网络应用开发:以Cora数据集节点分类为例的研究与实践
python
祝余Eleanor1 小时前
Day32 深入理解SHAP图
人工智能·python·机器学习
ModestCoder_1 小时前
强化学习 Policy 的 Tracking 能力全解析,以Legged_gym为例解说Policy的训练流程
人工智能·算法·自然语言处理·机器人·具身智能
int WINGsssss1 小时前
【无标题】
pytorch·分布式·python
q_30238195562 小时前
Python实现基于多模态知识图谱的中医智能辅助诊疗系统:迈向智慧中医的新篇章
开发语言·python·知识图谱
小武~2 小时前
Leetcode 每日一题C 语言版 -- 234 basic calculator
linux·c语言·leetcode