Problem
Roman numerals are represented by seven different symbols: I
, V
, X
, L
, C
, D
and M
.
1 |
|
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 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. Input is guaranteed to be within the range from 1 to 3999.
Example 1:
1 |
|
Example 2:
1 |
|
Example 3:
1 |
|
Example 4:
1 |
|
Example 5:
1 |
|
Explanation 1
Character | I | V | X | L | C | D | M |
---|---|---|---|---|---|---|---|
Number | 1 | 5 | 10 | 50 | 100 | 500 | 1000 |
-
For example, 1437 in roman is MCDXXXVII. We find out the thousand digit, hundred digit, thenth digit, and single digit’s numbers all can be represented by roman character. 1000 is M, 400 is CD, 30 is XXX, 7 is VII. So, we can get every digit by division 1000, 100, 10, 1, and represent them.
-
We can have 4 groups. 1-3 is one group, 4 is one group, 5-8 is one group, 9 is one group. For example:
-
100 - C
-
200 - CC
-
300 - CCC
-
400 - CD
-
500 - D
-
600 - DC
-
700 - DCC
-
800 - DCCC
-
900 - CM
- We will first create a roman character array
roman{'M', 'D', 'C', 'L', 'X', 'V', 'I'}
and value arrayvalue{1000, 500, 100, 50, 10, 5, 1}
. We will iterate two steps each time, in other words, 1000, then 100, then 10, then 1, so we can divide it to get the digit.
Solution 1
1 |
|
Explanation 2
- We can also use greedy approach to solve this problem. From large to small, we create two one dimensional array.
int[] val = {1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1}
andString[] str {"M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I"}
. Loop through thevar
array, every iteration, while the numbernum
is greater than the currentval[i]
, we subtractvar[i]
, and add the correspondingstr[i]
to the result.
Solution 2
1 |
|