leetcode - 1653. Minimum Deletions to Make String Balanced

Description

You are given a string s consisting only of characters ‘a’ and 'b’​​​​.

You can delete any number of characters in s to make s balanced. s is balanced if there is no pair of indices (i,j) such that i < j and s[i] = ‘b’ and s[j]= ‘a’.

Return the minimum number of deletions needed to make s balanced.

Example 1:

Input: s = "aababbab"
Output: 2
Explanation: You can either:
Delete the characters at 0-indexed positions 2 and 6 ("aababbab" -> "aaabbb"), or
Delete the characters at 0-indexed positions 3 and 6 ("aababbab" -> "aabbbb").

Example 2:

Input: s = "bbaaaaabb"
Output: 2
Explanation: The only solution is to delete the first two characters.

Constraints:

1 <= s.length <= 105
s[i] is 'a' or 'b'​​.

Solution

Find the balance point, all the chars at the left of this point would be a, and the right would be b, iterate the s to find the best balance point

At the balance point, all you need to do is: delete all the bs at the left and all the as at the right. The number of b at the left would be all the bs that you have already visited, and all the as at the right would be the number of a in s minus the a you have visited.

Time complexity: o ( n ) o(n) o(n)
Space complexity: o ( 1 ) o(1) o(1)

Code

class Solution:
    def minimumDeletions(self, s: str) -> int:
        cnt = {}
        for char in s:
            cnt[char] = cnt.get(char, 0) + 1
        a_cnt, b_cnt = 0, 0
        res = b_cnt + cnt.get('a', 0) - a_cnt
        for balance_point in range(1, len(s) + 1):
            if s[balance_point - 1] == 'a':
                a_cnt += 1
            else:
                b_cnt += 1
            delete_cnt = b_cnt + cnt.get('a', 0) - a_cnt
            res = min(res, delete_cnt)
        return res
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值