LeetCode in Kotlin

761. Special Binary String

Hard

Special binary strings are binary strings with the following two properties:

You are given a special binary string s.

A move consists of choosing two consecutive, non-empty, special substrings of s, and swapping them. Two strings are consecutive if the last character of the first string is exactly one index before the first character of the second string.

Return the lexicographically largest resulting string possible after applying the mentioned operations on the string.

Example 1:

Input: s = “11011000”

Output: “11100100”

Explanation: The strings “10” [occuring at s[1]] and “1100” [at s[3]] are swapped. This is the lexicographically largest string possible after some number of swaps.

Example 2:

Input: s = “10”

Output: “10”

Constraints:

Solution

import java.util.PriorityQueue

class Solution {
    fun makeLargestSpecial(s: String): String {
        if (s.isEmpty() || s.length == 2) {
            return s
        }
        val pq = PriorityQueue { a: String?, b: String? ->
            b!!.compareTo(
                a!!
            )
        }
        var acc = 1
        var prev = 0
        for (i in 1..s.length) {
            if (acc == 0) {
                if (!(prev == 0 && i == s.length)) {
                    pq.add(makeLargestSpecial(s.substring(prev, i)))
                }
                prev = i
            }
            if (i == s.length) {
                break
            }
            if (s[i] == '1') {
                acc++
            } else {
                acc--
            }
        }
        val ans = StringBuilder()
        while (pq.isNotEmpty()) {
            ans.append(pq.poll())
        }
        if (ans.isEmpty()) {
            ans.append('1')
            ans.append(makeLargestSpecial(s.substring(1, s.length - 1)))
            ans.append('0')
        }
        return ans.toString()
    }
}