1. Link:
Http://poj.org/problem? Id = 2503
Http://bailian.openjudge.cn/practice/2503/
2. content:
Babelfish
Time limit:3000 Ms |
|
Memory limit:65536 K |
Total submissions:32783 |
|
Accepted:14093 |
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 shocould be translated as "eh ".
Sample Input
dog ogdaycat atcaypig igpayfroot ootfrayloops oopslayatcayittenkayoopslay
Sample output
catehloops
Hint
Huge input and output, scanf and printf are recommended.
Source
Waterloo local 2001.09.22
3. Method:
4. Code:
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cstdlib> 5 6 using namespace std; 7 8 #define MAX_LENGTH 11 9 #define MAX_CONTENT 10000210 11 struct dic12 {13 char key[MAX_LENGTH];14 char value[MAX_LENGTH];15 }a[MAX_CONTENT];16 17 int mycmp(const void *x,const void *y)18 {19 return strcmp(((dic*)x)->key,((dic*)y)->key);20 }21 22 int mycmp_bsearch(const void *x,const void *y)23 {24 return strcmp((char*)x,((dic*)y)->key);25 }26 27 28 int main()29 {30 char key[MAX_LENGTH],value[MAX_LENGTH];31 dic* result;32 int i=0;33 while((value[0]=getchar())!=‘\n‘)34 {35 scanf("%s %s",value+1,key);36 strcpy(a[i].key,key);37 strcpy(a[i++].value,value);38 getchar();39 }40 41 qsort(a,i,sizeof(dic),mycmp);42 43 while(scanf("%s",key)!=EOF)44 {45 result=(dic*)bsearch(key,a,i,sizeof(dic),mycmp_bsearch);46 if(result==NULL) printf("eh\n");47 else printf("%s\n",result->value);48 }49 //system("pause");50 return 0;51 }
5. Reference:
Poj 2503/openjudge 2503 babelfish