鱼C论坛

 找回密码
 立即注册
查看: 765|回复: 0

[学习笔记] leetcode 13. Roman to Integer

[复制链接]
发表于 2019-9-16 11:46:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
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: L = 50, V= 5, 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) {
        int sum = 0;
        for(int i = 0 ; i< s.length(); i++){
            char cur = s.charAt(i);
            char next;
            if(i != s.length() -1) next = s.charAt(i+1);
            else next = '\u0000';
            
            if(cur == 'I' && next == 'V') sum += 4;
            else if(cur == 'I' && next == 'X') sum += 9;
            else if(cur == 'V' && next == 'X') sum += 5;
            else if(cur == 'X' && next == 'L') sum += 40;
            else if(cur == 'L' && next == 'C') sum += 50;
            else if(cur == 'X' && next == 'C') sum += 90;
            else if(cur == 'D' && next == 'M') sum += 500;
            else if(cur == 'C' && next == 'D') sum += 400;
            else if(cur == 'C' && next == 'M') sum += 900;
            else{
                
                if(cur == 'I') sum += 1;
                else if(cur == 'V') sum += 5;
                else if(cur == 'X') sum += 10;
                else if(cur == 'L') sum += 50;
                else if(cur == 'C') sum += 100;
                else if(cur == 'D') sum += 500;
                else if(cur == 'M') sum += 1000;
                continue;
            }
            
            i++;
        }
        return sum;
    }
}
class Solution {
    public int romanToInt(String s) {
        int sum = 0;
        for(int i = 0 ; i< s.length(); i++){
            int value = 0;
            char cur = s.charAt(i);
            switch(cur){
                case 'I':
                    if(i+1 < s.length() && s.charAt(i+1) == 'V') {
                        value = 4;
                        i++;
                    }
                    else if(i+1 < s.length() && s.charAt(i+1) == 'X') {
                        value = 9;
                        i++;
                    }
                    else value = 1;
                    break;
                case 'V':
                    value = 5;
                    break;
                case 'X':
                    if(i+1 < s.length() && s.charAt(i+1) == 'L') {
                        value = 40;
                        i++;
                    }
                    else if(i+1 < s.length() && s.charAt(i+1) == 'C') {
                        value = 90;
                        i++;
                    }
                    else value = 10;
                    break;
                case 'L':
                    value = 50;
                    break;
                case 'C':
                    if(i+1 < s.length() && s.charAt(i+1) == 'D') {
                        value = 400;
                        i++;
                    }
                    else if(i+1 < s.length() && s.charAt(i+1) == 'M') {
                        value = 900;
                        i++;
                    }
                    else value = 100;
                    break;
                case 'D':
                    value = 500;
                    break;
                case 'M':
                    value= 1000;
                    break;
            }
            sum = sum + value;
        }
        return sum;
    }
}

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-9-28 22:59

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表