码迷,mamicode.com
首页 > 其他好文 > 详细

856. 括号的分数

时间:2020-07-26 23:24:27      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:span   problems   com   length   平衡   字符串   math   思路   col   

给定一个平衡括号字符串 S,按下述规则计算该字符串的分数:

() 得 1 分。
AB 得 A + B 分,其中 A 和 B 是平衡括号字符串。
(A) 得 2 * A 分,其中 A 是平衡括号字符串。

 

示例 1:

输入: "()"
输出: 1

 

示例 2:

输入: "(())"
输出: 2

 

示例 3:

输入: "()()"
输出: 2

 

示例 4:

输入: "(()(()))"
输出: 6 

 

解题思路:

  括号代表深度,1, 2, 4, 8,...,2n方。

class Solution {
    public int scoreOfParentheses(String S) {
        Stack<Integer> stack = new Stack<>();
        stack.push(0);
        for(char ch : S.toCharArray()) {
            if(ch == ‘(‘) {
                stack.push(0);
            } else {
                int temp = stack.pop();
                int w = stack.pop();
                stack.push(w + Math.max(2 * temp, 1));
            }
        }
        return stack.pop();
        
    }
}

  

 

 

提示:

S 是平衡括号字符串,且只含有 ( 和 ) 。
2 <= S.length <= 50

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

856. 括号的分数

标签:span   problems   com   length   平衡   字符串   math   思路   col   

原文地址:https://www.cnblogs.com/PHUN19/p/13382742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!