-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13. Roman to Integer
62 lines (62 loc) · 1.66 KB
/
13. Roman to Integer
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
class Solution {
public:
int romanToInt(string s) {
int ans=0;
for(int i=0;i<s.length();i++){
switch(s[i]){
case 'I':
ans++;
break;
case 'V':
ans+=5;
if(i!=0){
if(s[i-1]=='I'){
ans-=2;
}
}
break;
case 'X':
ans+=10;
if(i!=0){
if(s[i-1]=='I'){
ans-=2;
}
}
break;
case 'L':
ans+=50;
if(i!=0){
if(s[i-1]=='X'){
ans-=20;
}
}
break;
case 'C':
ans+=100;
if(i!=0){
if(s[i-1]=='X'){
ans-=20;
}
}
break;
case 'D':
ans+=500;
if(i!=0){
if(s[i-1]=='C'){
ans-=200;
}
}
break;
case 'M':
ans+=1000;
if(i!=0){
if(s[i-1]=='C'){
ans-=200;
}
}
break;
}
}
return ans;
}
};