-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13.py
42 lines (34 loc) · 1.09 KB
/
13.py
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
class Solution:
# @param {string} s
# @return {integer}
def romanToInt(self, s):
s_len = len(s)
if s_len == 0:
return 0
romanMap = dict()
romanMap['I'] = 1
romanMap['V'] = 5
romanMap['X'] = 10
romanMap['L'] = 50
romanMap['C'] = 100
romanMap['D'] = 500
romanMap['M'] = 1000
romanMap['W'] = 0 # special case
interger = 0
last_r = s[-1]
temp = romanMap[last_r]
for idx in range(s_len-2,-1,-1):
r = s[idx]
if r == last_r:
temp += romanMap[r]
else:
if romanMap[r] > romanMap[last_r]:
interger += temp
last_r = r
temp = romanMap[r]
elif romanMap[r] < romanMap[last_r]:
interger += temp - romanMap[r]
last_r = 'W'
temp = 0
interger += temp
return interger