Number of Atoms - Problem

Given a string formula representing a chemical formula, return the count of each atom.

The atomic element always starts with an uppercase character, then zero or more lowercase letters, representing the name. One or more digits representing that element's count may follow if the count is greater than 1. If the count is 1, no digits will follow.

For example, "H2O" and "H2O2" are possible, but "H1O2" is impossible.

Two formulas are concatenated together to produce another formula. For example, "H2O2He3Mg4" is also a formula.

A formula placed in parentheses, and a count (optionally added) is also a formula. For example, "(H2O2)" and "(H2O2)3" are formulas.

Return the count of all elements as a string in the following form: the first name (in sorted order), followed by its count (if that count is more than 1), followed by the second name (in sorted order), followed by its count (if that count is more than 1), and so on.

Input & Output

Example 1 — Basic Formula
$ Input: formula = "H2O"
Output: "H2O"
💡 Note: H appears 2 times, O appears 1 time. Sort alphabetically: H2O
Example 2 — Parentheses with Multiplier
$ Input: formula = "Mg(OH)2"
Output: "H2MgO2"
💡 Note: Mg appears 1 time, (OH)2 means O appears 2 times and H appears 2 times. Sort alphabetically: H2MgO2
Example 3 — Nested Parentheses
$ Input: formula = "K4(ON(SO3)2)2"
Output: "K4N2O14S4"
💡 Note: Complex nested structure: K appears 4 times, each (ON(SO3)2) repeated twice contains 1 O, 1 N, 2 S, and 6 O from SO3, totaling K4N2O14S4

Constraints

  • 1 ≤ formula.length ≤ 1000
  • formula consists of English letters, digits, '(', and ')'
  • formula is always valid
  • All atom values in the output will fit in a 32-bit integer

Visualization

Tap to expand
Number of Atoms - Optimal Solution INPUT Chemical Formula String: "H2O" Character Breakdown: H Element 2 Count O Element formula = "H2O" Uppercase = element start Digits = element count Use Stack + HashMap Stack HashMap ALGORITHM STEPS 1 Initialize Stack Push empty HashMap to stack stack: [{ }] 2 Parse 'H' + '2' Add H:2 to current map stack: [{H:2}] 3 Parse 'O' No digit = count 1 stack: [{H:2, O:1}] 4 Sort and Format Sort keys alphabetically Sorted keys: [H, O] H + "2" + O + "" = "H2O" (count 1 is omitted) FINAL RESULT Formatted Output: "H2O" Atom Counts: Atom Count H 2 O 1 OK - Verified! Output matches expected Water Molecule O H H Key Insight: Use a stack of HashMaps to handle nested parentheses. Each '(' pushes a new map, each ')' pops and multiplies counts by the following number. For simple formulas like "H2O", parse elements and digits directly, then sort alphabetically. Time: O(n log n) for sorting, Space: O(n) for the maps. TutorialsPoint - Number of Atoms | Optimal Solution (Stack + HashMap)
Asked in
Google 25 Amazon 18 Facebook 12 Microsoft 8
89.5K Views
Medium Frequency
~25 min Avg. Time
1.8K Likes
Ln 1, Col 1
Smart Actions
💡 Explanation
AI Ready
💡 Suggestion Tab to accept Esc to dismiss
// Output will appear here after running code
Code Editor Closed
Click the red button to reopen