Hdu1075 what are you talking about [STL]

Source: Internet
Author: User

What are you talking abouttime limit: 10000/5000 MS (Java/others) memory limit: 102400/204800 K (Java/Others) Total submission (s): 13806 accepted submission (s): 4434

Problem descriptionignatius 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?
 
Inputthe 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 shoshould 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 shoshould be ignored. the book part starts with a single line contains a string "start", this string shoshould be ignored, then an article written in Martian's language. you shoshould translate the article into English with the dictionary. if you find the word in the dictionary you shoshould 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 ('\ t'), enter (' \ n') and all the punctuation shoshould 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.
 
Outputin this problem, you have to output the translation of the history book.
 
Sample Input
STARTfrom fiwohello difhmars riwosfearth fnnvklike fiiwjENDSTARTdifh, i‘m fiwo riwosf.i fiiwj fnnvk!END
 
Sample output
hello, i‘m from mars.i like earth!HintHuge input, scanf is recommended.

#include <iostream>#include <cstdio>#include <string>#include <cstring>#include <cctype>#include <map>using namespace std;int main(){char buf[12], sign, s1[12], s2[12], ch;map<string, string> mp;int id = 0;gets(buf); //strip STARTwhile(scanf("%s%s", s1, s2), strcmp(s1, "END")){mp[s2] = s1;}getchar();while(scanf("%c", &ch)){if(isalpha(ch)) buf[id++] = ch;else{buf[id] = '\0'; id = 0;if(strcmp(buf, "END") == 0) break;if(mp.find(buf) != mp.end()){printf("%s", mp[buf].c_str());}else printf("%s", buf);putchar(ch);}}return 0;}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.