-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path13_roman_to_integer.cpp
69 lines (60 loc) · 1.28 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
#include "test.h"
class Solution
{
public:
int romanToInt(string s)
{
struct Item
{
string roman;
int value;
};
vector<Item> table =
{
{"M", 1000},
{"CM", 900},
{"D", 500},
{"CD", 400},
{"C", 100},
{"XC", 90},
{"L", 50},
{"XL", 40},
{"X", 10},
{"IX", 9},
{"V", 5},
{"IV", 4},
{"I", 1},
};
int ret = 0;
auto i = 0u;
for (const auto& item: table)
{
while (findAt(s, i, item.roman))
{
i += item.roman.length();
ret += item.value;
}
}
return ret;
}
bool findAt(const string& s1, string::size_type pos, const string& s2)
{
if (s1.length() < pos + s2.length())
return false;
for (auto i = 0u; i < s2.length(); ++i)
{
if (s2[i] != s1[pos + i])
return false;
}
return true;
}
};
int main()
{
Solution s;
cout
<< s.romanToInt("IX") << ", "
<< s.romanToInt("LVIII") << ", "
<< s.romanToInt("MCMXCIV") << ", "
<< endl;
}