Problem Description
Convert a given Roman numeral string into its corresponding integer value.
Key Insights
- Roman numerals consist of specific symbols that represent different values.
- Larger values precede smaller values, but there are specific cases where a smaller value precedes a larger one, indicating subtraction.
- The six subtraction cases to remember are: IV (4), IX (9), XL (40), XC (90), CD (400), and CM (900).
Space and Time Complexity
Time Complexity: O(n) - where n is the length of the Roman numeral string, since we need to traverse each character once. Space Complexity: O(1) - since we are using a fixed amount of space for storing values regardless of the input size.
Solution
We can use a hash table (dictionary) to map each Roman numeral to its corresponding integer value. We then iterate through the string from left to right. For each numeral, we check if it is less than the numeral that follows it. If it is, we subtract its value from the total; otherwise, we add its value. This approach efficiently handles the special subtraction cases.