-
Notifications
You must be signed in to change notification settings - Fork 0
/
Q13.java
66 lines (58 loc) · 1.95 KB
/
Q13.java
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
package algorithms;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Q13 {
public int romanToInt(String s) {
Map<Character, Integer> map = new HashMap<Character, Integer>();
map.put('I', 1);
map.put('V', 5);
map.put('X', 10);
map.put('L', 50);
map.put('C', 100);
map.put('D', 500);
map.put('M', 1000);
int ans = 0;
int i = 0;
while (i < s.length()) {
if (i == s.length() - 1) {
ans += map.get(s.charAt(i));
break;
} else if (s.charAt(i) == 'I') {
if (s.charAt(i + 1) == 'V' || s.charAt(i + 1) == 'X') {
ans += map.get(s.charAt(i + 1)) - map.get(s.charAt(i));
i += 2;
} else {
ans += map.get(s.charAt(i));
i += 1;
}
} else if (s.charAt(i) == 'X') {
if (s.charAt(i + 1) == 'L' || s.charAt(i + 1) == 'C') {
ans += map.get(s.charAt(i + 1)) - map.get(s.charAt(i));
i += 2;
} else {
ans += map.get(s.charAt(i));
i += 1;
}
} else if (s.charAt(i) == 'C') {
if (s.charAt(i + 1) == 'D' || s.charAt(i + 1) == 'M') {
ans += map.get(s.charAt(i + 1)) - map.get(s.charAt(i));
i += 2;
} else {
ans += map.get(s.charAt(i));
i += 1;
}
} else {
ans += map.get(s.charAt(i));
i += 1;
}
}
return ans;
}
public static void main(String[] args) {
String s = "LVIII";
Q13 q = new Q13();
int ans = q.romanToInt(s);
System.out.println(ans);
}
}