• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
james1207

博客园    首页    新随笔    联系   管理    订阅  订阅

zoj 1109 : Language of FatMouse

Language of FatMouse

Time Limit: 10 Seconds      Memory Limit: 32768 KB

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

Source: Zhejiang University Training Contest 2001

 

 

算法:

Map,思想是调用map,定义map<string,string> M

 

代码:

#include <iostream>
#include <map>
#include <cstdio>
#include <string>
#include <cstring>
using namespace std;
map<string,string> M;
int main()
{
    char a[12],b[12],str[30];
    while(gets(str))
    {
        if(strcmp(str,"")==0)break;
        int i,l=strlen(str);
        for(i=0;i<l;++i)
        {
            if(str[i]==' ')break;
        }
        strncpy(a,str,i);
        a[i]='\0';
        strncpy(b,str+i+1,l-i);
        b[l-i]='\0';
       // cout<<a<<endl<<b<<endl;
        M[b]=a;
    }

    while(cin>>b)
    {
        if(M[b]=="")
        {
            cout<<"eh"<<endl;
        }
        else
        {
            cout<<M[b]<<endl;
        }
    }
    return 0;
}


 

 

posted @ 2013-08-17 21:57  Class Xman  阅读(265)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3