#761
Special Binary String
HardApproaches
Brute ForceOptimal
Complexity Comparison
| Brute Force | Optimal Solution★ | |
|---|---|---|
| Time | O(n²) | Unknown |
| Space | O(1) | Unknown |
💡
Intuition
Time UnknownSpace Unknown
The optimal approach uses a recursive strategy to decompose the string into special substrings, sorts them, and then combines them back in a way that ensures the result is lexicographically largest. This method is efficient and directly leverages the properties of special binary strings.
⚙️
Algorithm
3 steps- 1Step 1: Recursively decompose the string into special substrings.
- 2Step 2: Sort the special substrings in reverse order to ensure lexicographical maximization.
- 3Step 3: Concatenate the sorted substrings to form the final result.
solution.py12 lines
1def makeLargestSpecial(s):
2 count = i = 0
3 special = []
4 for j in range(len(s)):
5 count += 1 if s[j] == '1' else -1
6 if count == 0:
7 special.append('1' + makeLargestSpecial(s[i + 1:j]) + '0')
8 i = j + 1
9 return ''.join(sorted(special, reverse=True))
10
11# Example usage
12print(makeLargestSpecial('11011000'))Solutions and explanations are original Tejav content. Problem titles © LeetCode — use the LeetCode button above for the full problem statement.