Leetcode 3703. Remove K-Balanced Substrings

1. 解题思路

这一题思路上就是一个堆栈的思路,我们只需要将所有的括号进行聚合,然后统一进行进栈以及消除操作即可。

2. 代码实现

给出python代码实现如下:

class Solution:
    def removeSubstring(self, s: str, k: int) -> str:
        stack = []
        prev, cnt = "(", 0
        
        def push(stack, ch, cnt):
            if len(stack) == 0:
                stack.append([ch, cnt])
            elif ch == stack[-1][0]:
                stack[-1] = [ch, stack[-1][1] + cnt]
            elif ch == "(":
                stack.append([ch, cnt])
            else:
                while stack and cnt >= k and stack[-1][1] >= k:
                    stack[-1][1] -= k
                    cnt -= k
                    if stack[-1][-1] == 0:
                        stack.pop()
                        if stack and stack[-1][0] == ch:
                            cnt += stack.pop()[1]
                if cnt > 0:
                    if len(stack) == 0 or stack[-1][0] != ch:
                        stack.append([ch, cnt])
                    else:
                        stack[-1] = [ch, stack[-1][1] + cnt]
            return

        for ch in s:
            if ch == prev:
                cnt += 1
                continue
            if cnt != 0:
                push(stack, prev, cnt)
            prev, cnt = ch, 1
        push(stack, ch, cnt)
        ans = ""
        for ch, cnt in stack:
            ans += ch * cnt
        return ans

提交代码评测得到:耗时255ms,占用内存22.75MB。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值