hahn

[LeetCode - C] 13. Roman to Integer 본문

코딩테스트 연습/LeetCode(C - Easy)

[LeetCode - C] 13. Roman to Integer

hahn 2022. 3. 22. 06:51
728x90
반응형
 

Roman to Integer - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

 

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, 2 is written as II in Roman numeral, just two one's added together. 12 is written as XII, which is simply X + II. The number 27 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.

 

Example 1:

Input: s = "III"
Output: 3
Explanation: III = 3.

Example 2:

Input: s = "LVIII"
Output: 58
Explanation: L = 50, V= 5, III = 3.

Example 3:

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

 

Constraints:

  • 1 <= s.length <= 15
  • s contains only the characters ('I', 'V', 'X', 'L', 'C', 'D', 'M').
  • It is guaranteed that s is a valid roman numeral in the range [1, 3999].

Solution 1

 

1, 10, 100과 같이 10^n에 해당되는 수가

 

자신보다 큰 수의 앞에 오면 뺄셈이 되는 것을 이용하여 조건문을 작성했다.

 

sub_pardon에 idx를 저장하여

(실제로는 조건문에서 ++sub_pardon이기에 idx + 1에 해당)

 

s[sub_pardon]이 '\0'일 때까지 증가시켜

 

s[idx]보다 큰 수가 있는지 확인했다.

 

int romanToInt(char * s)
{
    int idx;
    int num;
    int sub_pardon;
    
    num = 0;
    idx = 0;
    while (s[idx])
    {
        sub_pardon = idx;
        if (s[idx] == 'M')
            num += 1000;
        else if (s[idx] == 'D')
            num += 500;
        else if (s[idx] == 'C')
        {
            while (s[++sub_pardon])
            {
                if (s[sub_pardon] == 'D' || s[sub_pardon] == 'M')
                    break;
            }
            if (s[sub_pardon])
                num -= 100;
            else
                num += 100;
        }
        else if (s[idx] == 'L')
            num += 50;
        else if (s[idx] == 'X')
        {
            while (s[++sub_pardon])
            {
                if (s[sub_pardon] == 'L' || s[sub_pardon] == 'C')
                    break;
            }
            if (s[sub_pardon])
                num -= 10;
            else
                num += 10;
        }
        else if (s[idx] == 'V')
            num += 5;
        else if (s[idx] == 'I')
        {
            while (s[++sub_pardon])
            {
                if (s[sub_pardon] == 'V' || s[sub_pardon] == 'X')
                    break;
            }
            if (s[sub_pardon])
                num -= 1;
            else
                num += 1;
        }
        idx++;
    }
    return (num);
}

총평

 

leetcode 제공 코드는 구독해야 볼 수 있어

 

다른 사람들 코드는 구글링으로 확인했다,

 

hash-map으로 풀거나

 

'CM'과 같이 각각 따로 조건 지정을 하여 푸신 분들이 많은 것 같다.

 

평소 IIV나 VI와 같이 생소할 수 있는 로마자에 대해서

 

어느정도 알고 있어 문제 접근을 할만했다.

728x90
반응형