[关闭]
@chawuciren 2018-11-16T09:08:15.000000Z 字数 1363 阅读 561

13. Roman to Integer

leetcode

Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.

Symbol Value
I 1
V 5
X 10
L 50
C 100
D 500
M 1000
For example, two is written as II in Roman numeral, just two one's added together. Twelve is written as, XII, which is simply X + II. The number twenty seven is written as XXVII, which is XX + V + II.

Roman numerals are usually written largest to smallest from left to right. However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four. The same principle applies to the number nine, which is written as IX. There are six instances where subtraction is used:

I can be placed before V (5) and X (10) to make 4 and 9.
X can be placed before L (50) and C (100) to make 40 and 90.
C can be placed before D (500) and M (1000) to make 400 and 900.
Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999.

Example 1:

Input: "III"
Output: 3

  1. int romanToInt(char* s){
  2. int res=0;
  3. int length=0;
  4. length=strlen(s);
  5. int *num=NULL;
  6. num=(int*)malloc(sizeof(int)*length);
  7. for(int i=0;i<length;i++){
  8. if(s[i]=='I'){//全部转成数字
  9. num[i]=1;
  10. }
  11. if(s[i]=='V'){
  12. num[i]=5;
  13. }
  14. if(s[i]=='X'){
  15. num[i]=10;
  16. }
  17. if(s[i]=='L'){
  18. num[i]=50;
  19. }
  20. if(s[i]=='C'){
  21. num[i]=100;
  22. }
  23. if(s[i]=='D'){
  24. num[i]=500;
  25. }
  26. if(s[i]=='M'){
  27. num[i]=1000;
  28. }
  29. }
  30. for(int j=0;j<length-1;j++){
  31. if(num[j]<num[j+1]){
  32. res+=(num[j+1]-num[j]);
  33. }
  34. else{
  35. res+=num[j];
  36. if((j+1)==length-1)
  37. res+=num[length-1];
  38. }
  39. }
  40. free(num);
  41. return res;
  42. }

Wrong Answer
Details
Playground Debug
Input
"MCMXCIV"
Output
3094
Expected
1994

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注