-
Notifications
You must be signed in to change notification settings - Fork 0
/
13. Roman to Integer.cpp
75 lines (69 loc) · 1.52 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//DAY 10 PROBLEM 1
class Solution {
public:
int romanToInt(string s) {
int res=0;
for(int i=0;i<s.size();i++)
{
if(s[i+1]=='V'&&s[i]=='I')
{
i++;
res+=4;
}
else if(s[i+1]=='X'&&s[i]=='I')
{
i++;
res+=9;
}
else if(s[i+1]=='L'&&s[i]=='X')
{
i++;
res+=40;
}
else if(s[i+1]=='C'&&s[i]=='X')
{
i++;
res+=90;
}
else if(s[i+1]=='D'&&s[i]=='C')
{
i++;
res+=400;
}
else if(s[i+1]=='M'&&s[i]=='C')
{
i++;
res+=900;
}
else if(s[i]=='I')
{
res+=1;
}
else if(s[i]=='V')
{
res+=5;
}
else if(s[i]=='X')
{
res+=10;
}
else if(s[i]=='L')
{
res+=50;
}
else if(s[i]=='C')
{
res+=100;
}
else if(s[i]=='D')
{
res+=500;
}
else if(s[i]=='M')
{
res+=1000;
}
}
return res;
}
};