-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLC_13_RomanToInteger.cpp
74 lines (69 loc) · 1.74 KB
/
LC_13_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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
https://leetcode.com/problems/roman-to-integer/
13. Roman to Integer
https://binarysearch.com/problems/Roman-Numeral-to-Integer
*/
class Solution {
public:
int romanToInt_(string s) {
unordered_map<char,int> mp = {
{'I', 1},
{'V', 5},
{'X', 10},
{'L', 50},
{'C', 100},
{'D', 500},
{'M', 1000}
};
int n = s.length();
int value = mp[s[n-1]];
for(int i= n-2; i>=0 ;i--)
{
if(mp[s[i]] < mp[s[i+1]])
{
value = value - mp[s[i]];
}
else
{
value = value + mp[s[i]];
}
}
return value;
}
int romanToInt(string s) {
int sum = 0;
int len = s.length();
for(int i=0; i<len; i++)
{
if(s[i] == 'M')
sum+=1000;
else if(s[i] == 'D')
sum+=500;
else if(s[i] == 'C')
{
if(s[i+1] == 'M' || s[i+1] == 'D')
sum -= 100;
else
sum += 100;
}
else if(s[i] == 'L')
sum+=50;
else if(s[i] == 'X')
{
if(s[i+1] == 'L' || s[i+1] == 'C')
sum -= 10;
else
sum += 10;
} else if(s[i] == 'V')
sum+=5;
else if(s[i] == 'I')
{
if(s[i+1] == 'X' || s[i+1] == 'V')
sum -= 1;
else
sum += 1;
}
}//for
return sum;
}//end
};