POJ 2503 Babelfish [매 핑]

1882 단어 데이터 구조
Babelfish
Time Limit: 3000MS
 
Memory Limit: 65536K
Total Submissions: 50004
 
Accepted: 20871
Description
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

atcay
ittenkay
oopslay

Sample Output
cat
eh
loops

Hint
Huge input and output,scanf and printf are recommended.
Source
Waterloo local 2001.09.22
질문 링크: POJ 2503 Babelfish
문제 설명: 사전 을 입력 하 십시오. 사전 형식 은 '영어 외국어' 의 일 일 매 핑 관계 입 니 다.그리고 몇 개의 외국어 단 어 를 입력 하여 그들의 영어 번역 단 어 를 출력 합 니 다. 만약 사전에 이 단어 가 존재 하지 않 는 다 면 "eh" 를 출력 합 니 다.
문제 풀이 방향: 맵 사용.(사전 트 리 도 사용 가능)
AC 의 C + + 프로그램:
#include
#include
#include
#include

using namespace std;

mapm;

int main()
{
	char s[25],t[20];
	while(gets(s))
	{
		int l=strlen(s);
		if(l==0)
		  break;
		int i;
		for(i=0;i

좋은 웹페이지 즐겨찾기