856. 括号的分数

Posted phun19

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了856. 括号的分数相关的知识,希望对你有一定的参考价值。

给定一个平衡括号字符串 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. 括号的分数的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 算法 856. 括号的分数

LeetCode 856. 括号的分数

算法41----856. 括号的分数栈

Leetcode刷题100天—856. 括号的分数(栈)—day03

Leetcode刷题100天—856. 括号的分数(栈)—day03

leetcode 856. 括号的分数(Score of Parentheses)