【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;

        
    }
};
相关推荐
Milo_K1 小时前
今日 leetCode 15.三数之和
算法·leetcode
Darling_001 小时前
LeetCode_sql_day28(1767.寻找没有被执行的任务对)
sql·算法·leetcode
蓑 羽1 小时前
力扣438 找到字符串中所有字母异位词 Java版本
java·算法·leetcode
源代码:趴菜1 小时前
LeetCode63:不同路径II
算法·leetcode·职场和发展
南加第一划水2 小时前
Leetcode 每日一题:Evaluate Division
算法·leetcode·职场和发展
chnyi6_ya2 小时前
一些写leetcode的笔记
笔记·leetcode·c#
zero_one_Machel3 小时前
leetcode73矩阵置零
算法·leetcode·矩阵
立志成为coding大牛的菜鸟.4 小时前
力扣1143-最长公共子序列(Java详细题解)
java·算法·leetcode
鱼跃鹰飞4 小时前
Leetcode面试经典150题-130.被围绕的区域
java·算法·leetcode·面试·职场和发展·深度优先
CV工程师小林11 小时前
【算法】BFS 系列之边权为 1 的最短路问题
数据结构·c++·算法·leetcode·宽度优先