zoukankan      html  css  js  c++  java
  • hdu 1075 What Are You Talking About (map)

    What Are You Talking About
    Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 102400/204800 K (Java/Others)
    Total Submission(s): 28601    Accepted Submission(s): 9743

    Problem Description
    Ignatius is so lucky that he met a Martian yesterday. But he didn't know the language the Martians use. The Martian gives him a history book of Mars and a dictionary when it leaves. Now Ignatius want to translate the history book into English. Can you help him?
     
    Input
    The problem has only one test case, the test case consists of two parts, the dictionary part and the book part. The dictionary part starts with a single line contains a string "START", this string should be ignored, then some lines follow, each line contains two strings, the first one is a word in English, the second one is the corresponding word in Martian's language. A line with a single string "END" indicates the end of the directory part, and this string should be ignored. The book part starts with a single line contains a string "START", this string should be ignored, then an article written in Martian's language. You should translate the article into English with the dictionary. If you find the word in the dictionary you should translate it and write the new word into your translation, if you can't find the word in the dictionary you do not have to translate it, and just copy the old word to your translation. Space(' '), tab(' '), enter(' ') and all the punctuation should not be translated. A line with a single string "END" indicates the end of the book part, and that's also the end of the input. All the words are in the lowercase, and each word will contain at most 10 characters, and each line will contain at most 3000 characters.
     
    Output
    In this problem, you have to output the translation of the history book.
     
    Sample Input
    START
    from fiwo
    hello difh
    mars riwosf
    earth fnnvk
    like fiiwj
    END
    START
    difh, i'm fiwo riwosf.
    i fiiwj fnnvk!
    END
     
    Sample Output
    hello, i'm from mars.
    i like earth!
     

    C/C++:

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <iostream>
     4 #include <map>
     5 using namespace std;
     6 const int MAX = 20;
     7 
     8 char buf[MAX], s1[MAX], s2[MAX], ch;
     9 int pos = 0;
    10 
    11 map <string, string> m;
    12 
    13 int main()
    14 {
    15     gets(buf);
    16     while (scanf("%s%s", &s1, &s2), strcmp(s1, "END"))
    17     {
    18 //      scanf("%s", &s2);
    19         m[s2] = s1;
    20     }
    21     getchar();
    22     while (scanf("%c", &ch))
    23     {
    24         if (isalpha(ch)) buf[pos ++] = ch;
    25         else
    26         {
    27             buf[pos] = '', pos = 0;
    28             if (strcmp(buf, "END") == 0) break;
    29             if (m.find(buf) != m.end())
    30                 cout <<m[buf];
    31             else
    32                 printf("%s", buf);
    33             printf("%c", ch);
    34         }
    35     }
    36     return 0;
    37 }
  • 相关阅读:
    弧长的参方程表示形式
    selenium实例
    中英文混合分词
    准确率(Precision)、召回率(Recall)以及F值(F-Measure)
    安装zeromq以及zeromq的python示例
    uwsgi安装过程中遇到的问题
    安装python-devel 在升级到python2.7之后
    更新yum源
    yum mysql on centos 7
    vue--子组件主动获取父组件的数据和方法
  • 原文地址:https://www.cnblogs.com/GetcharZp/p/9547363.html
Copyright © 2011-2022 走看看