程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> ZOJ1109_Language of FatMouse(STL/map)

ZOJ1109_Language of FatMouse(STL/map)

編輯:C++入門知識

ZOJ1109_Language of FatMouse(STL/map)


解題報告

題意:

略。

思路:

map應用。

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;
mapMap;
int main()
{

    string str1,str2,str;
    int i,j;
    while(getline(cin,str))
    {
        str1.clear();
        str2.clear();
        if(str[0]=='\0')break;
        for(i=0;i>str1)
    {
        if(!Map[str1].empty())
        cout<

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved