LeetCode之Easy篇 ——(12)Roman to Integer

Posted promiseslc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode之Easy篇 ——(12)Roman to Integer相关的知识,希望对你有一定的参考价值。

Given an integer, convert it to a roman numeral.

Input is guaranteed to be within the range from 1 to 3999.

罗马数字:

基本字符
I
V
X
L
C
D
M
相应的阿拉伯数字表示为
1
5
10
50
100
500
1000

1、相同的数字连写、所表示的数等于这些数字相加得到的数、如:Ⅲ=3;

2、小的数字在大的数字的右边、所表示的数等于这些数字相加得到的数、 如:Ⅷ=8、Ⅻ=12;

3、小的数字(限于 I、X 和 C)在大的数字的左边、所表示的数等于大数减小数得到的数、如:Ⅳ=4、Ⅸ=9;

4、正常使用时、连写的数字重复不得超过三次;

5、在一个数的上面画一条横线、表示这个数扩大 1000 倍。

思路:

  首先,用二维数组保存罗马数字的个位、整十、整百、整千(如1000、2000...其他类似)。举例:[0][1]代表“I”,[1][0]代表X,[1][1]代表XX。

  其次,将输入值的各位取出来,再输出对应数组里的罗马字符。举例:若取出来的是百位上的3,则对应数组的[2][2],即是它对应的300。

Java代码实现:

public class Solution {
    public String intToRoman(int num) {
        String[][] s = new String[][]{{"", "I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX"}, {"", "X", "XX", "XXX", "XL", "L", "LX", "LXX", "LXXX", "XC"}, {"", "C", "CC", "CCC", "CD", "D", "DC", "DCC", "DCCC", "CM"}, {"", "M", "MM", "MMM"}};
        return s[3][num / 1000 % 10] + s[2][num / 100 % 10] + s[1][num / 10 % 10] + s[0][num % 10];
    }
}

 

以上是关于LeetCode之Easy篇 ——(12)Roman to Integer的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode之Easy篇 ——Reverse Integer

Leetcode解题思路总结(Easy篇)

LeetCode-Easy刷题(12) Length of Last Word

LeetCode Array Easy 283. Move Zeroes

Codeforces 803E--Roma and Poker (DP)

LeetCode记录之9——Palindrome Number