Skip to content

Latest commit

 

History

History
121 lines (83 loc) · 2.77 KB

0012._Integer_to_Roman.md

File metadata and controls

121 lines (83 loc) · 2.77 KB

12. Integer to Roman

难度: Medium

刷题内容

原题连接

内容描述

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.

解题方案

思路 1 - 时间复杂度: O(N)- 空间复杂度: O(1)******

首先我学习了一下罗马字母是如何表示的。然后感慨,这个阿拉伯数字是多么好的发明

上图

基于的是这些个Symbol:

1	5	10	50	100	500	1000
I	V	X  	 L	 C	 D	 M

罗马数字表示法见Leetcode 013

这里有一个很棒的算法

beats 51.51%

class Solution(object):
    def intToRoman(self, num):
        """
        :type num: int
        :rtype: str
        """
        lookup = {
            'M': 1000, 
            'CM': 900, 
            'D': 500, 
            'CD': 400, 
            'C': 100, 
            'XC': 90, 
            'L': 50, 
            'XL': 40, 
            'X': 10, 
            'IX': 9, 
            'V': 5, 
            'IV': 4, 
            'I': 1
        }
        roman = ''

        for symbol, val in sorted(lookup.items(), key = lambda t: t[1])[::-1]:
        	while num >= val:
        		roman += symbol
        		num -= val
        return roman

因为dict本身是无序的,这里做了一个排序的操作,否则可能会出现IIII这种状况。