ZOJ2311 POJ2121 Inglish-Number Translator
/*******************************************************************************
# Author : Neo Fung
# Email : [email protected]
# Last modified: 2012-01-03 19:03
# Filename: ZOJ2311 POJ2121 Inglish-Number Translator.cpp
# Description :
******************************************************************************/
// #include "stdafx.h"
// #define DEBUG
#include <fstream>
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <string>
#include <memory.h>
#include <limits.h>
#include <algorithm>
#include <math.h>
#include <numeric>
#include <functional>
#include <ctype.h>
#include <map>
#include <sstream>
using namespace std;
string str2num[]={"zero", "one", "two", "three", "four", "five", "six", "seven", "eight","nine", "ten", "eleven", "twelve",
"thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety","hundred", "thousand", "million"};
int num2str[]={0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,30,40,50,60,70,80,90,100,1000,1000000};
int main(void)
{
#ifdef DEBUG
freopen("C:/Users/neo/Desktop/stdin.txt","r",stdin);
freopen("C:/Users/neo/Desktop/stdout.txt","w",stdout);
#endif
map<string,int> sn_map;
for(int i=0;i<31;++i)
sn_map.insert(make_pair(str2num[i],num2str[i]));
string str,line;
while(getline(cin,line))
{
if(line.length()==0)
break;
istringstream ss(line);
bool b_negative=false;
long long ans=0;
long long pre=0;
while(ss>>str)
{
if(str=="negative")
b_negative=true;
else if(str=="hundred")
{
pre*=100;
}
else if(str=="thousand")
{
pre*=1000;
ans+=pre;
pre=0;
}
else if(str=="million")
{
pre*=1000000;
ans+=pre;
pre=0;
}
else
{
pre+=sn_map[str];
}
}
ans+=pre;
if(b_negative)
ans*=-1;
printf("%lld
",ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.