Description
You are given a string s.
You can perform the following process on s any number of times:
- Choose an index iin the string such that there is at least one character to the left of indexithat is equal tos[i], and at least one character to the right that is also equal tos[i].
- Delete the closest occurrence of s[i]located to the left ofi.
- Delete the closest occurrence of s[i]located to the right ofi.
Return the minimum length of the final string s that you can achieve.
Β
Example 1:
Input: s = "abaacbcbb"
Output: 5
Explanation:
We do the following operations:
- Choose index 2, then remove the characters at indices 0 and 3. The resulting string is s = "bacbcbb".
- Choose index 3, then remove the characters at indices 0 and 5. The resulting string is s = "acbcb".
Example 2:
Input: s = "aa"
Output: 2
Explanation:
We cannot perform any operations, so we return the length of the original string.
Β
Constraints:
- 1 <= s.length <= 2 * 105
- sconsists only of lowercase English letters.
Solution
Python3
class Solution:
    def minimumLength(self, s: str) -> int:
        N = len(s)
        count = [0] * 26
 
        for i, x in enumerate(s):
            k = ord(x) - ord('a')
            if count[k] >= 2:
                count[k] -= 2
            
            count[k] += 1
        
        return sum(count)