You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language. Fortunately, you have a dictionary to help you understand them.
Input
Input consists of up to 100,000 dictionary entries, followed by a blank line, followed by a message of up to 100,000 words. Each dictionary entry is a line containing an English word, followed by a space and a foreign language word. No foreign word appears more than once in the dictionary. The message is a sequence of words in the foreign language, one word on each line. Each word in the input is a sequence of at most 10 lowercase letters.
Output
Output is the message translated to English, one word per line. Foreign words not in the dictionary should be translated as ‘eh’.
Sample Input
dog ogday cat atcay pig igpay froot ootfray loops oopslay |
Sample Output
cat eh loops |
題意: 查字典,翻出原本的英文
想法: 用MAP很簡單就可以達成,但這題我卡了很久,原因在於我用了char 而不是string,所以資料根本不會被insert到map中,如果一定要用的話就要用const char,原因可以看一下這些地方:
- http://stackoverflow.com/questions/4157687/using-char-as-a-key-in-stdmap
- http://stackoverflow.com/questions/12136071/c-mapstdstring-vs-mapchar-performance-i-know-again
後來把char* 改成string就AC了。
歐對了,還有一個小地方是,find是找map對應的key值,所以存的時候順序要對。
|