-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathRomanToInteger.cpp
59 lines (51 loc) · 989 Bytes
/
RomanToInteger.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
Read more details about roman numerals at Roman Numeric System
Example :
Input : "XIV"
Return : 14
Input : "XX"
Output : 20
LINK: https://www.interviewbit.com/problems/roman-to-integer/
*/
int val(char c)
{
if(c=='I')
return 1;
if(c=='V')
return 5;
if(c=='X')
return 10;
if(c=='L')
return 50;
if(c=='C')
return 100;
if(c=='D')
return 500;
if(c=='M')
return 1000;
}
int Solution::romanToInt(string s)
{
int res = 0;
int len = s.length();
for(int i=0;i<len;i++)
{
int v1 = val(s[i]);
if(i<len-1)
{
int v2 = val(s[i+1]);
if(v2>v1)
{
res += v2-v1;
i++;
}
else
res += v1;
}
else
res += v1;
}
return res;
}