您的位置:首页 > 理论基础 > 数据结构算法

zoj 1109 Language of FatMouse

2013-08-06 19:50 411 查看
Language of FatMouseTime Limit: 10 Seconds     Memory Limit: 32768 KBWe 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 SpecificationInput 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 morethan 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 SpecificationOutput 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
import java.util.HashMap;import java.util.Scanner;public class Main{public static void main(String[] args) {Scanner input=new Scanner(System.in);String s;HashMap<String,String> map=new HashMap<String, String>();while((s=input.nextLine()).length()!=0){String a[]=s.split(" ");map.put(a[1], a[0]);}while(input.hasNext()){s=input.next();if(map.get(s)!=null)System.out.println(map.get(s));elseSystem.out.println("eh");}}}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息