-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13.cpp
69 lines (62 loc) · 1.45 KB
/
13.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 <algorithm>
#include <cassert>
#include <gtest/gtest.h>
#include <string>
#include <unordered_map>
using namespace std;
class Solution {
public:
int romanToInt(string s)
{
unordered_map<char, int> romanMap = {{'I', 1}, {'V', 5}, {'X', 10},
{'L', 50}, {'C', 100}, {'D', 500},
{'M', 1000}};
int sum = 0;
for (int i = 1; i < s.size(); i++) {
if (romanMap[s[i]] > romanMap[s[i - 1]]) {
sum += romanMap[s[i]] - 2 * romanMap[s[i - 1]];
}
else {
sum += romanMap[s[i]];
}
}
sum += romanMap[s[0]];
return sum;
}
};
class Testing : public testing::Test {
public:
Solution solution;
void SetUp() {}
void TearDown() {}
};
TEST_F(Testing, Case1)
{
string s = "III";
int expected = 3;
EXPECT_EQ(solution.romanToInt(s), expected);
}
TEST_F(Testing, Case2)
{
string s = "IV";
int expected = 4;
EXPECT_EQ(solution.romanToInt(s), expected);
}
TEST_F(Testing, Case3)
{
string s = "IX";
int expected = 9;
EXPECT_EQ(solution.romanToInt(s), expected);
}
TEST_F(Testing, Case4)
{
string s = "LVIII";
int expected = 58;
EXPECT_EQ(solution.romanToInt(s), expected);
}
TEST_F(Testing, Case5)
{
string s = "MCMXCIV";
int expected = 1994;
EXPECT_EQ(solution.romanToInt(s), expected);
}