Solution: Longest Happy String
Let’s solve the Longest Happy String using the Heaps pattern.
We'll cover the following
Statement
A string is considered happy if it meets the following conditions:
It comprises only the characters
'a'
,'b'
, and'c'
.It does not contain the substrings
"aaa"
,"bbb"
, or"ccc"
.The total occurrences of:
The character
'a'
does not exceeda
.The character
'b'
does not exceedb
.The character
'c'
does not exceedc
.
You are given three integers, a
, b
, and c
, representing the maximum allowable occurrences of 'a'
, 'b'
, and 'c'
, respectively. Your task is to return the longest possible happy string. If there are multiple valid longest happy strings, return any one of them. If no such string can be formed, return an empty string ""
.
Note: A substring is a contiguous sequence of characters within a string.
Constraints:
a
,b
,c
Solution
The essence of this solution lies in constructing the longest happy string while adhering to the constraints of avoiding three consecutive identical characters. The approach uses the heaps pattern and prioritizes characters with the highest remaining frequency to maximize the length of the resulting string. A max heap keeps track of the most frequent characters to achieve this. The character with the highest frequency is added to the resulting string at each step, provided it does not violate the constraints. If adding the character would result in three consecutive identical characters, the next most frequent character is selected and added to the resulting string. By carefully managing character counts and maintaining priority with the heap, the solution ensures that valid characters are used to their maximum potential. This process continues until no valid characters can be added, resulting in the longest possible happy string or an empty string if no such string can be formed.
Now, let’s look at the solution steps below:
We initialize a max heap,
pq
, to store the input frequencies of'a'
,'b'
, and'c'
. We push the frequencies intopq
, where each heap element is a tuple of the frequency and the corresponding character.We initialize an empty list
result
to construct the happy string step by step.We iterate until the heap,
pq
, is empty and perform the following:We pop the character with the highest frequency from
pq
.We handle repetition constraints by checking if the last two characters in the
result
are the same as the currentcharacter
because adding it would violate the rule of avoiding three consecutive identical characters:In this case, check if another character is available in
pq
. If yes, pop it, append it to theresult
, and push it back intopq
after decrementing its count.Push the original
character
back into the heap to try adding it later.
Otherwise, if adding the current
character
does not violate the constraints, append it to theresult
, decrease itscount
by, and push it back into pq
if there are remaining occurrences.
Finally, we return the
result
as the longest happy string.
Let’s look at the following illustration to get a better understanding of the solution:
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.