题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1075
What Are You Talking About
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 102400/204800 K (Java/Others)
Total Submission(s): 17509 Accepted Submission(s):
5696
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!
Hint
Huge input, scanf is recommended.
题目大意:将给出的火星字符串翻译成英文字符串,每个单词有对应的英文单词,如果不存在对应的就输出原有的即可。
解题思路:对火星字符串进行建树,在最后一个字母上存下对应的英文字符串。这里要注意一个标记,不然会超内存。
如图。画了两个具体说明一下,其余的以此类推。
详见代码。
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include<malloc.h> 5 6 using namespace std; 7 8 struct node 9 { 10 char *cc;//用来存最后一个单词 11 node *next[26]; 12 int flag;//用来标记 13 node()//初始化 14 { 15 for (int i=0; i<26; i++) 16 { 17 next[i]=NULL; 18 } 19 flag=0; 20 } 21 }; 22 23 node *p,*root=new node(); 24 void insert(char *s,char *t)//对火星文进行建树,在最后一个字符下面存下对应的英文字符串 25 { 26 p=root; 27 for (int i=0; s[i]!='