Post

3445 Lexicographically Minimum String After Removing Stars

3445 Lexicographically Minimum String After Removing Stars

Lexicographically Minimum String After Removing Stars image

You are given a string s. It may contain any number of ‘’ characters. Your task is to remove all ‘’ characters.

While there is a ‘*’, do the following operation:

1
Delete the leftmost '*' and the **smallest** non-'*' character to its *left*. If there are several smallest characters, you can delete any of them.

Return the lexicographically smallest resulting string after removing all ‘*’ characters.

 

Example 1:

Input: s = “aaba*”

Output: “aab”

Explanation:

We should delete one of the ‘a’ characters with ‘*’. If we choose s[3], s becomes the lexicographically smallest.

Example 2:

Input: s = “abc”

Output: “abc”

Explanation:

There is no ‘*’ in the string.

 

Constraints:

1
2
3
1 <= s.length <= 105
s consists only of lowercase English letters and '*'.
The input is generated such that it is possible to delete all '*' characters.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

class Solution:
    def clearStars(self, s: str) -> str:
        arr = [0] * 26
        mp = {}
        st =[]
        for k in s:
            if k == "*":
                to_be_removed = ""
                for i, a in enumerate(arr):
                    if a > 0:
                        arr[i] -= 1
                        to_be_removed = chr(i + 97)
                        break
                
                index = mp[to_be_removed][-1]
                st[index] = "#"
                if len(mp[to_be_removed][:-1]) == 0:
                    del mp[to_be_removed]
                else:
                    mp[to_be_removed] = mp[to_be_removed][:-1]
                #print(st,mp, to_be_removed)
            else:
                st.append(k)
                if k in mp:
                    mp[k].append(len(st)-1)
                else:
                    mp[k] = [len(st)-1]
                #print(ord(k)-97)
                arr[ord(k)-97] += 1
        res = ""
        for k in st:
            if k != "#":
                res += k

        return res


        



This post is licensed under CC BY 4.0 by the author.