zoj 2971 Give Me the Number

ZOJ Problem Set - 2971
Give Me the Number

Time Limit: 1 Second      Memory Limit: 32768 KB

Numbers in English are written down in the following way (only numbers less than 109 are considered). Number abc,def,ghi is written as "[abc] million [def] thousand [ghi]". Here "[xyz] " means the written down number xyz .

In the written down number the part "[abc] million" is omitted if abc = 0 , "[def] thousand" is omitted if def = 0 , and "[ghi] " is omitted if ghi = 0 . If the whole number is equal to 0 it is written down as "zero". Note that words "million" and "thousand" are singular even if the number of millions or thousands respectively is greater than one.

Numbers under one thousand are written down in the following way. The number xyz is written as "[x] hundred and [yz] ”. ( If yz = 0 it should be only “[x] hundred”. Otherwise if y = 0 it should be only “[x] hundred and [z]”.) Here "[x] hundred and" is omitted if x = 0 . Note that "hundred" is also always singular.

Numbers under 20 are written down as "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", and "nineteen" respectively. Numbers from 20 to 99 are written down in the following way. Number xy is written as "[x0] [y] ", and numbers divisible by ten are written as "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", and "ninety" respectively.

For example, number 987,654,312 is written down as "nine hundred and eighty seven million six hundred and fifty four thousand three hundred and twelve", number 100,000,037 as "one hundred million thirty seven", number 1,000 as "one thousand". Note that "one" is never omitted for millions, thousands and hundreds.

Give you the written down words of a number, please give out the original number.

Input

Standard input will contain multiple test cases. The first line of the input is a single integer T (1 <= T <= 1900) which is the number of test cases. It will be followed by T consecutive test cases.

Each test case contains only one line consisting of a sequence of English words representing a number.

Output

For each line of the English words output the corresponding integer in a single line. You can assume that the integer is smaller than 109.

Sample Input

3
one
eleven
one hundred and two

Sample Output

1
11
102

Author: CAO, Peng


Source: The 5th Zhejiang Provincial Collegiate Programming Contest
Submit    Status
//1849088 2009-05-01 14:19:57 Accepted  2971 C++ 30 184 Wpl 
#include <iostream>
#include 
<string>
#include 
<map>
using namespace std;
map
<string,int>M;
int main()
{
    M[
"zero"]=0;
    M[
"one"]=1;
    M[
"two"]=2;
    M[
"three"]=3;
    M[
"four"]=4;
    M[
"five"]=5;
    M[
"six"]=6;
    M[
"seven"]=7;
    M[
"eight"]=8;
    M[
"nine"]=9;
    M[
"ten"]=10;
    M[
"eleven"]=11;
    M[
"twelve"]=12;
    M[
"thirteen"]=13;
    M[
"fourteen"]=14;
    M[
"fifteen"]=15;
    M[
"sixteen"]=16;
    M[
"seventeen"]=17;
    M[
"eighteen"]=18;
    M[
"nineteen"]=19;
    M[
"twenty"]=20;
    M[
"thirty"]=30;
    M[
"forty"]=40;
    M[
"fifty"]=50;
    M[
"sixty"]=60;
    M[
"seventy"]=70;
    M[
"eighty"]=80;
    M[
"ninety"]=90;
    
int t,len,i;
    
string str,strtemp;
    cin
>>t;
    getchar();
    
while(t--)
    {
        getline(cin,str,
'\n');
        str
+=" ";
        len
=str.length();
        
int sum=0,temp=0,start=0;
        
for(i=0;i<len;i++)
        {
            
if(str[i]==' ')
            {
                strtemp
=str.substr(start,i-start);
                start
=i+1;
                
if(strtemp=="and")
                    
continue;
                
else if(strtemp=="million")
                {
                    sum
+=temp*1000000;
                    temp
=0;
                }
                
else if(strtemp=="thousand")
                {
                    sum
+=temp*1000;
                    temp
=0;
                }
                
else if(strtemp=="hundred")
                {
                    temp
=temp*100;
                }
                
else
                    temp
+=M[strtemp];
            }
        }
        sum
+=temp;
        printf(
"%d\n",sum);
    }
    
return 0;
}
原文地址:https://www.cnblogs.com/forever4444/p/1454656.html