Welcome to Subscribe On Youtube
Question
Formatted question description: https://leetcode.ca/all/12.html
12. Integer to Roman
Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.
Symbol Value
I 1
V 5
X 10
L 50
C 100
D 500
M 1000
For example, two is written as II in Roman numeral, just two one's added together.
Twelve is written as, XII, which is simply X + II. The number twenty seven is written as XXVII, which is XX + V + II.
Roman numerals are usually written largest to smallest from left to right.
However, the numeral for four is not IIII. Instead, the number four is written as IV.
Because the one is before the five we subtract it making four.
The same principle applies to the number nine, which is written as IX. There are six instances where subtraction is used:
I can be placed before V (5) and X (10) to make 4 and 9.
X can be placed before L (50) and C (100) to make 40 and 90.
C can be placed before D (500) and M (1000) to make 400 and 900.
Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999.
Example 1:
Input: 3
Output: "III"
Example 2:
Input: 4
Output: "IV"
Example 3:
Input: 9
Output: "IX"
Example 4:
Input: 58
Output: "LVIII"
Explanation: L = 50, V = 5, III = 3.
Example 5:
Input: 1994
Output: "MCMXCIV"
Explanation: M = 1000, CM = 900, XC = 90 and IV = 4.
@tag-string
Algorithm
Because the range of input numbers (1-3999) is limited in the question, the question becomes much simpler.
I-1
V-5
X-10
L-50
C-100
D-500
M-1000
For example, the Roman numeral for the integer 1437 is MCDXXXVII. It is not difficult to find that the thousands, hundreds, tens, and ones digits are represented by Roman numerals. 1000-M, 400-CD, 30-XXX, 7-VII. So what we have to do is to use the quotient method to extract the numbers in each digit, and then express them separately:
100-C
200-CC
300-CCC
400-CD
500-D
600-DC
700-DCC
800-DCCC
900-CM
Can be divided into four categories, 100 to 300 category, 400 category, 500 to 800 category, 900 last category. The situation on digit is similar.
Code
Java
-
public class Integer_to_Roman { public class Solution { /* steps for Roman number: 1. 1 <= digit <= 3, append that digit number of Roman 2. digit = 4, append "I"+Roman 3. digit = 5,10, etc... append Roman 4. 6 <= digit <= 8, append Roman+"I" 5. digit = 9, append "I"+Roman */ public String intToRoman(int num) { // @note: pre-calculate 900,400,90,40,9,4 String[] symbols = {"M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"}; // order: descending int[] values = {1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1}; StringBuilder result = new StringBuilder(); for (int i = 0; i < values.length; i++) { while (num >= values[i]) { result.append(symbols[i]); num -= values[i]; } } return new String(result); } } }
-
// OJ: https://leetcode.com/problems/integer-to-roman/ // Time: O(1) // Space: O(1) class Solution { string symbols = "MDCLXVI"; int values[7] = {1000,500,100,50,10,5,1}; public: string intToRoman(int num) { string ans; for (int i = 0; i < 7; i += 2) { int d = num / values[i]; if (d == 0) continue; if (d <= 3) { while (d--) ans += symbols[i]; } else if (d == 4) { ans += symbols[i]; ans += symbols[i - 1]; } else if (d == 5) { ans += symbols[i - 1]; } else if (d <= 8) { ans += symbols[i - 1]; for (int j = 5; j < d; ++j) ans += symbols[i]; } else { ans += symbols[i]; ans += symbols[i - 2]; } num %= values[i]; } return ans; } };
-
class Solution: def intToRoman(self, num: int) -> str: nums = [ (1000, 'M'), (900, 'CM'), (500, 'D'), (400, 'CD'), (100, 'C'), (90, 'XC'), (50, 'L'), (40, 'XL'), (10, 'X'), (9, 'IX'), (5, 'V'), (4, 'IV'), (1, 'I'), ] res = [] for k, v in nums: while num >= k: num -= k res.append(v) return ''.join(res) ############ class Solution(object): def intToRoman(self, num): """ :type num: int :rtype: str """ ans = "" values = {"M": 1000, "D": 500, "C": 100, "L": 50, "X": 10, "V": 5, "I": 1} literals = ["M", "D", "C", "L", "X", "V", "I"] for idx in [0, 2, 4]: k = num / values[literals[idx]] re = (num % values[literals[idx]]) / values[literals[idx + 2]] ans += k * literals[idx] if re >= 9: ans += literals[idx + 2] + literals[idx] elif re >= 5: ans += literals[idx + 1] + (re - 5) * literals[idx + 2] elif re == 4: ans += literals[idx + 2] + literals[idx + 1] else: ans += re * literals[idx + 2] num %= values[literals[idx + 2]] return ans