糖逗 发表于 2020-6-17 16:15:54

C++刷leetcode(921. 使括号有效的最少添加)【数据结构】

题目描述:
给定一个由 '(' 和 ')' 括号组成的字符串 S,我们需要添加最少的括号( '(' 或是 ')',可以在任何位置),以使得到的括号字符串有效。

从形式上讲,只有满足下面几点之一,括号字符串才是有效的:

它是一个空字符串,或者
它可以被写成 AB (A 与 B 连接), 其中 A 和 B 都是有效字符串,或者
它可以被写作 (A),其中 A 是有效字符串。
给定一个括号字符串,返回为使结果字符串有效而必须添加的最少括号数。

 

示例 1:

输入:"())"
输出:1
示例 2:

输入:"((("
输出:3
示例 3:

输入:"()"
输出:0
示例 4:

输入:"()))(("
输出:4
 

提示:

S.length <= 1000
S 只包含 '(' 和 ')' 字符。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/minimum-add-to-make-parentheses-valid
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。


class Solution {
public:
    int minAddToMakeValid(string S) {
      map<char, int> store;
      int len = S.size();
      for(int i = 0 ; i < len; i++){
            if(S == '('){
                store['(']++;
            }else if(S == ')'){
                if(store.find('(') != store.end() && store['('] > 0){
                  store['(']--;
                }else{
                  store[')']++;
                }
            }
      }
      int res = 0;
      res = store['('] + store[')'];
      return res;
    }
};

糖逗 发表于 2020-6-17 16:16:26

一次过{:10_312:}
页: [1]
查看完整版本: C++刷leetcode(921. 使括号有效的最少添加)【数据结构】