-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13-Roman-to-Integer.cpp
61 lines (60 loc) · 1.56 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
53
54
55
56
57
58
59
60
class Solution {
public:
int romanToInt(string s) {
int i, length = s.size(), res = 0;
for(i = 0; i < length; i++){
if(s[i] == 'M'){
res += 1000;
}
else if(s[i] == 'D'){
res += 500;
}
else if(s[i] == 'L'){
res += 50;
}
else if(s[i] == 'V'){
res += 5;
}
else if(s[i] == 'C'){
if(i + 1 != length){
if(s[i + 1] == 'D' || s[i + 1] == 'M'){
res -= 100;
}
else{
res += 100;
}
}
else{
res += 100;
}
}
else if(s[i] == 'X'){
if(i + 1 != length){
if(s[i + 1] == 'L' || s[i + 1] == 'C'){
res -= 10;
}
else{
res += 10;
}
}
else{
res += 10;
}
}
else if(s[i] == 'I'){
if(i + 1 != length){
if(s[i + 1] == 'V' || s[i + 1] == 'X'){
res -= 1;
}
else{
res += 1;
}
}
else{
res += 1;
}
}
}
return res;
}
};