13. (LeetCode-java)Roman to Integer

题目:

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 a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999.

Example 1:

Input: "III"
Output: 3
Example 2:

Input: "IV"
Output: 4
Example 3:

Input: "IX"
Output: 9
Example 4:

Input: "LVIII"
Output: 58
Explanation: C = 100, L = 50, XXX = 30 and III = 3.
Example 5:

Input: "MCMXCIV"
Output: 1994
Explanation: M = 1000, CM = 900, XC = 90 and IV = 4.

我的答案:

class Solution {
    public int romanToInt(String s) {
        Map<Integer, Integer> mapCount = new HashMap<>();
        int i = 0;
        int length = s.length();
        while(i < length) {
            char c = s.charAt(i);
            switch(c) {
                case 'I': i = devide(i, s, mapCount, 'I', 'V', 'X');break;
                case 'V': i = devide(i, s, mapCount, 'V', ' ', ' ');break;
                case 'X': i = devide(i, s, mapCount, 'X', 'L', 'C');break;
                case 'L': i = devide(i, s, mapCount, 'L', ' ', ' ');break;
                case 'C': i = devide(i, s, mapCount, 'C', 'D', 'M');break;
                case 'D': i = devide(i, s, mapCount, 'D', ' ', ' ');break;
                case 'M': i = devide(i, s, mapCount, 'M', ' ', ' ');break;
            }
        }
        int sum = 0;
        for(Map.Entry<Integer, Integer> entry: mapCount.entrySet()) {
            sum += entry.getKey() * entry.getValue();
        }
        return sum;
    }
    public static void mapKeyAdd1(Map<Integer, Integer> mapCount, int key) {
        if(mapCount == null)
            return;
        if(mapCount.get(key) == null) {
            mapCount.put(key, 1);
        } else {
            int value = mapCount.get(key);
            value++;
            mapCount.put(key, value);
        }
    }
    public static int devide(int i, String s, Map<Integer, Integer> mapCount, char c1, char c2, char c3) {
        int length = s.length();
        if(i < length-1 && s.charAt(i+1) == c2) {
            if(c1 == 'I') {
                mapKeyAdd1(mapCount, 4);
            } else if(c1 == 'X') {
                mapKeyAdd1(mapCount, 40);
            } else if(c1 == 'C') {
                mapKeyAdd1(mapCount, 400);
            }
            i = i + 2;
        } else if(i < length-1 && s.charAt(i+1) == c3) {
            if(c1 == 'I') {
                mapKeyAdd1(mapCount, 9);
            } else if(c1 == 'X') {
                mapKeyAdd1(mapCount, 90);
            } else if(c1 == 'C') {
                mapKeyAdd1(mapCount, 900);
            }
            i = i + 2;
        } else {
            if(c1 == 'I') {
                mapKeyAdd1(mapCount, 1);
            } else if(c1 == 'V') {
                mapKeyAdd1(mapCount, 5);
            } else if(c1 == 'X') {
                mapKeyAdd1(mapCount, 10);
            } else if(c1 == 'L') {
                mapKeyAdd1(mapCount, 50);
            } else if(c1 == 'C') {
                mapKeyAdd1(mapCount, 100);
            } else if(c1 == 'D') {
                mapKeyAdd1(mapCount, 500);
            } else if(c1 == 'M') {
                mapKeyAdd1(mapCount, 1000);
            }
            i++;
        }
        return i;
    }
}

猜你喜欢

转载自blog.csdn.net/c_little_white/article/details/82831467