hdu 1075:What Are You Talking About(사전 트 리,고전 문제,사전 번역)

17400 단어 HDU
What Are You Talking About
Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 102400/204800 K (Java/Others)Total Submission(s): 12617    Accepted Submission(s): 4031
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('\t'), 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.
 
 
Author
Ignatius.L
 
 
Recommend
We have carefully selected several similar problems for you:  
1800  
1671  
1247  
1298  
1072  
 
사전 트 리,고전 문제,사전 번역.
WA 를 한 번 했 는데 제 가 번역 할 단 어 를 잘못 알 았 습 니 다.만약 에 번역 할 수 있 는 긴 단어 가 다른 짧 은 단 어 를 포함 하고 있다 면 문장 을 옮 겨 다 닐 때 짧 은 단 어 를 먼저 만 날 수 있 습 니 다.WA 프로그램 은 이 짧 은 단 어 를 먼저 번역 하지만 사실은 이것 은 옳지 않 습 니 다.긴 단 어 를 모두 번역 해 야 합 니 다.만 나 는 대로 번역 하 는 것 이 아니다.
제 프로그램 운행 시간 은 281 MS 입 니 다.링크 로 만 들 었 으 니 배열 로 하면 빠 를 것 같 습 니 다.
제목:
한 조 의 테스트 데이터 만 두 부분 으로 나 뉜 다.첫 번 째 부분 은 사전 입 니 다.몇 개의 단어 와 해당 하 는 번역 을 드 리 겠 습 니 다.START 로 시작 하여 END 로 끝 납 니 다.두 번 째 부분 은 번역 부분 입 니 다.몇 개의 문장 을 드 리 겠 습 니 다.위 에 제 시 된 사전 에 따라 화성 문 을 영어 로 번역 하고 START 로 시작 하여 END 로 끝내 도록 요구 합 니 다.여기 서 번역 할 때 사전 에 번역 에 대응 하 는 단어 만 번역 할 수 있 고 사전 에 번역 에 대응 하 는 단어 와 구두점 기호 빈 칸 이 그대로 출력 되 지 않 음 을 주의해 야 합 니 다.
생각:
사전 속 의 화성 문 단어,즉 오른쪽 단 어 를 사전 나무 로 만든다.단어 가 끝 난 노드 에 해당 하 는 영문 번역 을 저장 합 니 다.입력 할 때 전체 줄 을 읽 고 모든 문 자 를 옮 겨 다 니 며 모든 자 모 를 한 문자 배열 에 연속 으로 기록 합 니 다.영문 이 아 닌 문 자 를 만 날 때 까지 사전 트 리 에서 해당 하 는 영문 번역 이 있 는 지 찾 습 니 다.있 으 면 이 번역 을 출력 하고 없 으 면 원래 의 단 어 를 출력 합 니 다.
주의:
1.입력 방법,내 가 사용 하 는 scanf+gets.
2.번역 할 단 어 를 잘못 알 지 말고 알파벳 이 아 닌 문 자 를 만 나 단 어 를 계산한다.
3.최대한 cin,cout 를 사용 하지 마 세 요.시간 을 초과 하기 쉬 워 요.
코드:
 1 #include <iostream>

 2 #include <stdio.h>

 3 #include <string.h>

 4 #include <malloc.h>

 5 using namespace std;  6 

 7 struct Tire{  8     Tire *next[26];  9     char *trans;  //             

10     Tire()  //    

11  { 12         int i; 13         for(i=0;i<26;i++){ 14             next[i]=NULL; 15  } 16         trans = NULL; 17  } 18 }; 19 

20 Tire root; 21 

22 void Insert(char trans[],char word[])   //   word       ,        trans

23 { 24     Tire *p = &root; 25     int i; 26     for(i=0;trans[i];i++){ 27         int n = trans[i]-'a'; 28         if(p->next[n]==NULL) 29             p->next[n] = new Tire; 30         p = p->next[n]; 31  } 32     p->trans = (char*)malloc(sizeof(char)*11); 33     strcpy(p->trans,word); 34 } 35 void Find(char str[])   //

36 { 37     Tire *p = &root; 38     int i; 39     for(i=0;str[i];i++){ 40         int n = str[i]-'a'; 41         if(p->next[n]==NULL){ 42             printf("%s",str); 43             return ; 44  } 45         p = p->next[n]; 46  } 47     if(p->trans==NULL) 48         printf("%s",str); 49     else

50         printf("%s",p->trans); 51 } 52 

53 int main() 54 { 55     char word[11],trans[11]; 56     scanf("%s",word); 57     while(scanf("%s",word)!=EOF){   //    

58         if(strcmp(word,"END")==0)   //      

59             break; 60         scanf("%s",trans); 61         Insert(trans,word); //   word       ,         

62  } 63     scanf("%s",word); 64  getchar(); 65     char str[3001]; 66     while(gets(str)){ 67         if(strcmp(str,"END")==0) 68             break; 69         int i,j=0; 70         char t[3001]={0}; 71         for(i=0;str[i];i++){ 72             if('a'<=str[i] && str[i]<='z'){ //         

73                 t[j++] = str[i]; 74  } 75             else{ 76                 t[j] = '\0'; 77                 if(t[0]!='\0'){ //    

78                     Find(t);    //

79                     t[0]='\0',j=0;  //   t

80  } 81                 printf("%c",str[i]); 82  } 83  } 84         printf("
"); 85 } 86 87 return 0; 88 }

 
Freecode : www.cnblogs.com/yym2013

좋은 웹페이지 즐겨찾기