前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【leetcode刷题】T29-使括号有效的最少添加个数

【leetcode刷题】T29-使括号有效的最少添加个数

作者头像
木又AI帮
修改2019-07-18 09:55:21
4300
修改2019-07-18 09:55:21
举报
文章被收录于专栏:木又AI帮

【英文题目】(学习英语的同时,更能理解题意哟~)

Given a string S of '(' and ')' parentheses, we add the minimum number of parentheses ( '(' or ')', and in any positions ) so that the resulting parentheses string is valid.

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

  • It is the empty string, 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.

Given a parentheses string, return the minimum number of parentheses we must add to make the resulting string valid.

Example 1:

代码语言:javascript
复制
Input: "())"
Output: 

Example 2:

代码语言:javascript
复制
Input: "((("
Output: 

【中文题目】

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

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

  • 它是一个空字符串,或者
  • 它可以被写成 ABAB 连接), 其中 AB 都是有效字符串,或者
  • 它可以被写作 (A),其中 A 是有效字符串。

给定一个括号字符串,返回为使结果字符串有效而必须添加的最少括号数。

示例 1:

代码语言:javascript
复制
输入:"())"
输出:

示例 2:

代码语言:javascript
复制
输入:"((("
输出:

【思路】

我们使用left、right分别统计多余的左括号和右括号,遇到左括号,left加1;遇到右括号,若left不为0,left减1,否则right加1(左括号不够,多的右括号才是多余的)。(代码中count、res代替left、right)

【代码】

python版本

代码语言:javascript
复制
class Solution(object):
    def minAddToMakeValid(self, S):
        """
        :type S: str
        :rtype: int
        """
        count = 
        res = 
        for si in S:
            if si == '(':
                count += 
            elif count == :
                res += 
            else:
                count -= 
        return res + count

C++版本

代码语言:javascript
复制
class Solution {
public:
    int minAddToMakeValid(string S) {
        int count = ;
        int res = ;
        for(char si:S){
            if(si == '('){
                count += ;
            }else{
                if(count == ){
                    res += ;
                }else
                    count -= ;
            }
        }
        return count + res;
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2019-04-04,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 木又AI帮 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档