ZOJ1109 Language of FatMouse
We all know that FatMouse doesn't speak English. But now he has to be
prepared since our nation will join WTO soon. Thanks to Turing we have
computers to help him.
Input Specification
Input consists of up to 100,005 dictionary entries, followed by a blank
line, followed by a message of up to 100,005 words. Each dictionary entry is a
line containing an English word, followed by a space and a FatMouse word. No
FatMouse word appears more than once in the dictionary. The message is a
sequence of words in the language of FatMouse, one word on each line. Each word
in the input is a sequence of at most 10 lowercase letters.
Output Specification
Output is the message translated to English, one word per line. FatMouse
words not in the dictionary should be translated as "eh".
Sample Input
dog ogday
cat atcay
pig igpay
froot ootfray
loops oopslay
atcay
ittenkay
oopslay
Output for Sample Input
cat
eh
loops
代码:
#include<map>
#include<string>
#include <algorithm>
using namespace std ;
int main()
{
string strTmp;
map<string, string> dictionary;//词典
map<string, string>::iterator iter;
//构造词典
while(getline(cin,strTmp))
{
if (strTmp.compare("")==0)
{//词典项输入结束
break;
}
string strKey,strValue;
string::iterator pos = strTmp.begin();
pos = find(strTmp.begin(),strTmp.end(),' ');//找到空格分隔符
copy(strTmp.begin(),pos,back_inserter(strValue));//值
copy(pos+1,strTmp.end(),back_inserter(strKey));//键
dictionary[strKey] = strValue;//构造词典项
}
//在词典中查询单词
while(cin>>strTmp)
{
iter = dictionary.find(strTmp);
if (iter!=dictionary.end())
{//在词典中
cout<<dictionary[strTmp]<<endl;
}
else
{//不在词典中
cout<<"eh"<<endl;
}
}
return 0 ;
}
作者:洞庭散人
出处:http://phinecos.cnblogs.com/
posted on 2008-09-17 21:57 Phinecos(洞庭散人) 阅读(750) 评论(0) 编辑 收藏 举报
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述