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

1111. 有效括号的嵌套深度

时间:2020-06-08 14:48:42      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:max   +=   嵌套   int   split   技术   load   app   spl   

技术图片
技术图片
技术图片
技术图片
技术图片

class Solution(object):
    def maxDepthAfterSplit(self, seq):
        """
        :type seq: str
        :rtype: List[int]
        """
        res = []
        if not seq:
            return res
        depth, max_depth = 0, 0
        for ch in seq:
            if ch == "(":
                depth += 1
                if depth > max_depth:
                    max_depth = depth
            else:
                depth -= 1
        a_depth = 0
        mid = 1 + (max_depth-1)//2
        for ch in seq:
            if ch == "(":
                if a_depth < mid:
                    res.append(0)
                    a_depth += 1
                else:
                    res.append(1)
            else:
                if a_depth > 0:
                    res.append(0)
                    a_depth -= 1
                else:
                    res.append(1)
        return res

if __name__ == ‘__main__‘:
    solution = Solution()
    print(solution.maxDepthAfterSplit(seq="(()())"))

1111. 有效括号的嵌套深度

标签:max   +=   嵌套   int   split   技术   load   app   spl   

原文地址:https://www.cnblogs.com/panweiwei/p/13065301.html

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