【Leetcode】【240406】1249. Minimum Remove to Make Valid Parentheses

其实大部分是东京时间第二天凌晨才做的- -但国际服刷新比较晚

BGM:刀剑如梦

Decsripition

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

复制代码
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.

Solution

Just use stack to pair left and right parentheses, but remeber to save the num-th of the remain char.

Code

cpp 复制代码
class Solution {
public:
    string minRemoveToMakeValid(string s)
    {
        typedef struct pair
        {
            char kyara;
            int num;
        };
        stack<pair>tree;
        bool judge[100005]={0};
        for(int i=0;i<s.length();++i)
        {
            if(s[i]=='(')
            {
                pair mid;
                mid.kyara=s[i];
                mid.num=i;
                tree.push(mid);
            }
            else if(s[i]==')')
            {
                if(!tree.empty())
                {
                    pair mid=tree.top();
                    if(mid.kyara=='(') tree.pop();
                    else
                    {
                        pair curr;
                        curr.kyara=s[i];
                        curr.num=i;
                        tree.push(curr);
                    }
                }
                else
                {
                    pair mid;
                    mid.kyara=s[i];
                    mid.num=i;
                    tree.push(mid);
                }
            }
        }
        while(!tree.empty())
        {
            pair mid=tree.top();
            judge[mid.num]=1;
            tree.pop();
        }
        string c="";
        for(int i=0;i<s.length();++i)
        {
            if(judge[i]==0) c.push_back(s[i]);
        }
        return c;

        
    }
};
相关推荐
x_xbx35 分钟前
LeetCode:438. 找到字符串中所有字母异位词
算法·leetcode·职场和发展
派大星~课堂1 小时前
【力扣-94.二叉树的中序遍历】Python笔记
笔记·python·leetcode
AI成长日志2 小时前
【笔面试算法学习专栏】堆与优先队列实战:力扣hot100之215.数组中的第K个最大元素、347.前K个高频元素
学习·算法·leetcode
6Hzlia2 小时前
【Hot 100 刷题计划】 LeetCode 45. 跳跃游戏 II | C++ 贪心算法最优解题解
c++·leetcode·游戏
北顾笙9802 小时前
day18-数据结构力扣
数据结构·算法·leetcode
阿Y加油吧2 小时前
LeetCode 中等难度 | 回溯法进阶题解:单词搜索 & 分割回文串
算法·leetcode·职场和发展
float_com2 小时前
LeetCode 27. 移除元素
leetcode
样例过了就是过了3 小时前
LeetCode热题100 跳跃游戏
c++·算法·leetcode·贪心算法·动态规划
做怪小疯子4 小时前
LeetCode刷题——15.动态规划模式
算法·leetcode·动态规划
如竟没有火炬4 小时前
搜索二维矩阵
数据结构·python·算法·leetcode·矩阵