856. Score of Parentheses

Posted zzz-y

tags:

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

Given a balanced parentheses string S, compute the score of the string based on the following rule:

  • () has score 1
  • AB has score A + B, where A and B are balanced parentheses strings.
  • (A) has score 2 * A, where A is a balanced parentheses string.
Example 1:
Input: "()"
Output: 1

Example 2:
Input: "(())"
Output: 2

Example 3:
Input: "()()"
Output: 2

Example 4:
Input: "(()(()))"
Output: 6

计算由"("和")"组成的字符串的值。嵌套:乘2,并列:相加

用stack就可以。"("入栈,")",往前搜索第一个"(",如果中间有数字的,取出数字求和并乘以2;如果没有数字,直接压入"1"。

最后把stack中所有的数字相加。

 1 class Solution {
 2 public:
 3     int scoreOfParentheses(string S) {
 4         stack<string> s;
 5         int i = 0;
 6         while (i < S.length()) {
 7             if (S[i] == ()
 8                 s.push("(");
 9             else {
10                 if (s.top() == "(") {
11                     s.pop();
12                     s.push("1");
13                 }
14                 else {
15                     int temp = 0;
16                     while (s.top() != "(") {
17                         temp += stoi(s.top());
18                         s.pop();
19                     }
20                     s.pop();
21                     s.push(to_string(2 * temp));
22                 }
23             }
24             ++i;
25         }
26         int res = 0;
27         while (!s.empty()) {
28             res += stoi(s.top());
29             s.pop();
30         }
31         return res;
32     }
33 };

 

以上是关于856. Score of Parentheses的主要内容,如果未能解决你的问题,请参考以下文章

LC 856. Score of Parentheses

Leetcode 856. Score of Parentheses 括号得分(栈)

856. Score of Parentheses

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

[LeetCode] Score of Parentheses 括号的分数

力扣 每日一题 856. 括号的分数难度:中等(栈 / 思维计数&括号深度)