Problem Description
You are given a string caption
of length n
. A good caption is a string where every character appears in groups of at least 3 consecutive occurrences. You can perform operations to change characters to their immediate neighbors in the alphabet. Your task is to convert the given caption
into a good caption using the minimum number of operations, and return the lexicographically smallest one. If it is impossible to create a good caption, return an empty string.
Key Insights
- A good caption requires every character to appear consecutively at least 3 times.
- Changing a character can only be done to its adjacent characters in the alphabet.
- The solution must account for the minimum number of operations and the lexicographical order of the result.
- The problem can be approached using a greedy method or dynamic programming to minimize operations.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we can use a greedy approach where we iterate through the string and count the occurrences of each character. Whenever we find a character with fewer than 3 consecutive occurrences, we will convert it to the nearest character (either previous or next in the alphabet) to form groups of 3. We will maintain the lexicographical order by always choosing the smaller character when we have a choice. The algorithm will keep track of the number of operations and the resulting string to ensure it meets the criteria of a good caption.