12. Integer to Roman
LeetCode 12. Integer to Roman
Description
Roman numerals are represented by seven different symbols: I
, V
, X
, L
, C
, D
and M
.
For example, 2
is written as II
in Roman numeral, just two one's added together. 12
is written as XII
, which is simply X + II
. The number 27
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 beforeV
(5) andX
(10) to make 4 and 9.X
can be placed beforeL
(50) andC
(100) to make 40 and 90.C
can be placed beforeD
(500) andM
(1000) to make 400 and 900.
Given an integer, convert it to a roman numeral.
Example 1:
Example 2:
Example 3:
Constraints:
1 <= num <= 3999
Tags
Math, String, Greedy
Solution
首先整理所有的基础的数字对应罗马字母的情况,然后由大到小检查这些数字,用num
减去刚好小于等于它的数字,并把相应的罗马字母添加到结果之后,直至num == 0
,最后返回结果字符串。
Collate all base-mapping from value to symbol first. Then check these values in decending order, and find a value which is just smaller than or equal to num
. Subtract that value from num
and append the corresponding symbol to the ans
string. Repeat until num == 0
.
Complexity
Time complexity:
Space complexity:
Code
Reference
Last updated
Was this helpful?