LeetCode 856. Score of Parentheses

栏目: 编程工具 · 发布时间: 5年前

内容简介:Given a balanced parentheses string给定一个平衡括号字符串利用栈解题,当遇到左半边括号时压进 -1 ,遇到右半边括号时,判断栈顶是否是 -1,如果不是则把栈顶的分数出栈,记录到结果 score 中。 如果栈顶是 -1 ,则判断 score 是否为 0,如果是,则证明是 () 这种情况,压入分数1。否则,压入 2 倍 score。
LeetCode 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.
  • 中文:

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

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

提示:

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

示例

  • 示例 1:
输入: "()"
输出: 1
  • 示例 2:
输入: "(())"
输出: 2
  • 示例 3:
输入: "()()"
输出: 2
  • 示例 4:
输入: "(()(()))"
输出: 6

题解

  • 题解 1

利用栈解题,当遇到左半边括号时压进 -1 ,遇到右半边括号时,判断栈顶是否是 -1,如果不是则把栈顶的分数出栈,记录到结果 score 中。 如果栈顶是 -1 ,则判断 score 是否为 0,如果是,则证明是 () 这种情况,压入分数1。否则,压入 2 倍 score。

class Solution:
    def scoreOfParentheses(self, S):
        """
        :type S: str
        :rtype: int
        """
        stack = []
        for i in S:
            if i == '(':  # "("入栈
                stack.append(-1)
            else:
                score = 0
                while stack[-1] != -1:  # 计分
                    score += stack.pop()
                stack.pop()
                if score == 0:  # "()"的情况
                    stack.append(1)
                else:  # "(A)" "AB" 的情况
                    stack.append(2 * score)
        return sum(stack)
  • 题解 2

依然是栈的思想,但没有用到栈。给定一个标记 flag,若 ‘(’ 则 flag 左移,若 ‘)’ 则 flag 右移,若遇到 () 则 将 flag 的值记录到结果中去。

class Solution:
    def scoreOfParentheses(self, S):
        """
        :type S: str
        :rtype: int
        """
        score = 0
        flag = 0
        for i in range(len(S)):
            if S[i] == '(':
                if flag == 0:  # "()"的情况
                    flag = 1
                else:  # "(A)" "AB" 的情况
                    flag = flag << 1
            else:
                if S[i - 1] == '(':
                    score += flag  # 记录到结果中
                flag = flag >> 1
        return score

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Neural Networks for Applied Sciences and Engineering

Neural Networks for Applied Sciences and Engineering

Samarasinghe, Sandhya / CRC Pr I Llc / 2006-9 / $ 118.59

In response to the exponentially increasing need to analyze vast amounts of data, Neural Networks for Applied Sciences and Engineering: From Fundamentals to Complex Pattern Recognition provides scient......一起来看看 《Neural Networks for Applied Sciences and Engineering》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具