일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 프로그래머스
- 사칙연산
- LeetCode 83 c언어
- 정렬
- 큐
- 임의 정밀도 / 큰 수 연산
- 시뮬레이션
- 다이나믹 프로그래밍
- 수학
- 연결리스트 중복제거
- 조합론
- 이분 탐색
- 별 찍기
- LeetCode Remove Duplicates from Sorted List in c
- 스택
- KMP알고리즘
- 해시를 사용한 집합과 맵
- LeetCode 83번
- 문자열
- 브루트포스 알고리즘
- 구현
- 큰 수 연산
- Queue
- 정수론
- 재귀
- 문자열제곱
- 실패함수
- 자료 구조
- 연결리스트 정렬
- 유클리드 호제법
- Today
- Total
hahn
[LeetCode - C] 13. 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, 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와 같이 생소할 수 있는 로마자에 대해서
어느정도 알고 있어 문제 접근을 할만했다.
'코딩테스트 연습 > LeetCode(C - Easy)' 카테고리의 다른 글
[LeetCode - C] 26. Remove Duplicates from Sorted Array (0) | 2022.03.25 |
---|---|
[LeetCode - C] 21. Merge Two Sorted Lists (0) | 2022.03.24 |
[LeetCode - C] 20. Valid Parentheses (0) | 2022.03.23 |
[LeetCode - C] 14. Longest Common Prefix (0) | 2022.03.23 |
[LeetCode - C] 9. Palindrome Number (0) | 2022.03.22 |