zoukankan      html  css  js  c++  java
  • ZOJ Problem Set–1109 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和isstream,轻松搞定。郁闷的是,我把”eh” 输成了”en”调了半天没有找到错误,这下ac的ratio又被拉低了……

    #include<iostream>
    
    #include<map>
    
    #include<string>
    
    #include<sstream>
    
    using namespace std;
    
    int main()
    
    {
    
      string dic;
    
      map<string, string> m;
    
      while(getline(cin, dic) && dic != "")
    
      {
    
        istringstream is(dic);
    
        string key,value;
    
        is>>value>>key;
    
        m[key] = value;
    
      }
    
      string fatMouse;
    
      while(cin>>fatMouse)
    
      {
    
        if(m.find(fatMouse) != m.end())
    
        {
    
          cout<<m[fatMouse];
    
        }
    
        else
    
        {
    
          cout<<"eh";
    
        }
    
        cout<<endl;
    
      }
    
    }
  • 相关阅读:
    TCP/IP学习-链路层
    Linux下搭建Wordpress环境
    DiskMgr的限制项
    Win10系统Start Menu上的图标莫名消失
    powershell
    第一个页面的文本域中输入的值怎么在第二个页面中显示
    php 文本框里面显示数据库调出来的资料
    php代码
    php表单提交方法汇总
    php将SQL查询结果赋值给变量
  • 原文地址:https://www.cnblogs.com/malloc/p/2398755.html
Copyright © 2011-2022 走看看