Problem Description
Given a string formula representing a chemical formula, return the count of each atom.
Key Insights
- The atomic element starts with an uppercase letter followed by zero or more lowercase letters.
- A count for the element may follow, which is greater than 1. If the count is 1, no digits will follow.
- Formulas may be concatenated, and can also include parentheses with an optional count.
- The output should be a string of element counts in sorted order.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the formula string. Space Complexity: O(m), where m is the number of unique atoms in the formula.
Solution
The solution involves using a stack to handle nested parentheses and a hash table (dictionary) to count the occurrences of each atom. We parse the formula character by character:
- For each character, if it's an uppercase letter, we identify the atom and check for any subsequent lowercase letters.
- After identifying an atom, we check for a number that follows it to determine its count.
- If a '(' is encountered, we push the current counts onto the stack and reset the counts for the new formula inside the parentheses.
- Upon encountering a ')', we pop the counts from the stack and multiply them by any number that follows the parentheses.
- Finally, we sort the atoms and format the output string.