-
Notifications
You must be signed in to change notification settings - Fork 0
/
13.roman-to-integer.cpp
52 lines (51 loc) · 1.2 KB
/
13.roman-to-integer.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
/*
* @lc app=leetcode id=13 lang=cpp
*
* [13] Roman to Integer
*/
// @lc code=start
class Solution
{
public:
int romanToInt(string s)
{
int res = 0;
for (int i = 0; i < s.size(); ++i)
{
if (s[i] == 'I')
{
if (i + 1 < s.size() && (s[i + 1] == 'V' || s[i + 1] == 'X'))
res -= 1;
else
res += 1;
}
else if (s[i] == 'V')
res += 5;
else if (s[i] == 'X')
{
if (i + 1 < s.size() && (s[i + 1] == 'L' || s[i + 1] == 'C'))
res -= 10;
else
res += 10;
}
else if (s[i] == 'L')
res += 50;
else if (s[i] == 'C')
{
if (i + 1 < s.size() && (s[i + 1] == 'D' || s[i + 1] == 'M'))
res -= 100;
else
res += 100;
}
else if (s[i] == 'D')
res += 500;
else if (s[i] == 'M')
res += 1000;
} //for
return res;
}
};
// @lc code=end
//s = "MCMXCIV"
// i
//