Problem Description
Given a string s, remove duplicate letters so that every letter appears once and only once. You must make sure your result is the smallest in lexicographical order among all possible results.
Key Insights
- Utilize a stack to build the result string in a way that ensures characters are in lexicographical order.
- Use a frequency map to keep track of how many times each character appears.
- Maintain a set to track characters that are currently in the stack to avoid duplicates.
- As we iterate through the string, decide whether to add a character to the stack based on its lexicographical order and its remaining occurrences.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the string s. Each character is processed at most twice (once added to the stack and once removed). Space Complexity: O(1), since the maximum size of the stack can be at most the number of distinct characters (constant, as there are only 26 lowercase letters).
Solution
We can use a greedy algorithm combined with a stack data structure to solve this problem. The stack will help us build the output string character by character. For each character in the string, we will decide whether to add it to the stack or to remove characters from the stack to maintain the lexicographical order. The frequency map helps us keep track of how many characters are left to process.