1111. 有效括号的嵌套深度
Posted panweiwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1111. 有效括号的嵌套深度相关的知识,希望对你有一定的参考价值。
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. 有效括号的嵌套深度的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] 1111. Maximum Nesting Depth of Two Valid Parentheses Strings