xtu字符串 A. Babelfish

A. Babelfish

Time Limit: 3000ms

Memory Limit: 65536KB

64-bit integer IO format: %lld      Java class name: Main

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.

解题:可以用trie,不过刚学trie,写起来貌似代价很大,而且由于是先读完数据,再查询的,不是动态修改查询的,这种查询折半查找就能完成。

先上TLE代码,本来以为STL可以完成的,没想到超时

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cstdlib>
 5 #include <vector>
 6 #include <climits>
 7 #include <algorithm>
 8 #include <cmath>
 9 #include <map>
10 #define LL long long
11 #define INF 0x3f3f3f
12 using namespace std;
13 map<string,string>dic;
14 char str[200],a[100],b[100],word[100];
15 int main(){
16     while(gets(str) && str[0] != ‘\0‘){
17         sscanf(str,"%s %s",a,b);
18         dic.insert(pair<string,string>(b,a));
19     }
20     map<string,string>::iterator it;
21     while(gets(word)){
22         if(dic.count(word)) {
23             it = dic.find(word);
24             printf("%s\n",it->second.c_str());
25         }else puts("eh");
26     }
27     return 0;
28 }

下面是折半查找的代码,速度很快,代码很短,很喜欢呀。。。

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cstdlib>
 5 #include <vector>
 6 #include <climits>
 7 #include <algorithm>
 8 #include <cmath>
 9 #include <map>
10 #define LL long long
11 #define INF 0x3f3f3f
12 using namespace std;
13 struct word {
14     char from[20],to[20];
15 } dic[100010];
16 bool cmp(const word &a,const word &b) {
17     if(strcmp(a.from,b.from) <= 0)
18         return true;
19     return false;
20 }
21 int bsearch(int lt,int rt,char *str) {
22     int mid;
23     while(lt <= rt) {
24         mid = (lt+rt)>>1;
25         if(strcmp(dic[mid].from,str) == 0) return mid;
26         if(strcmp(str,dic[mid].from) < 0) rt = mid-1;
27         else lt = mid+1;
28     }
29     return -1;
30 }
31 int main() {
32     int cnt = 0,i,ans;
33     char str[50];
34     while(gets(str) && str[0] != ‘\0‘) {
35         sscanf(str,"%s %s",dic[cnt].to,dic[cnt].from);
36         cnt++;
37     }
38     sort(dic,dic+cnt,cmp);
39     while(gets(str)) {
40         ans = bsearch(0,cnt,str);
41         if(ans == -1) puts("eh");
42         else printf("%s\n",dic[ans].to);
43     }
44     return 0;
45 }

xtu字符串 A. Babelfish

时间: 2024-10-07 10:45:02

xtu字符串 A. Babelfish的相关文章

xtu字符串 D. 病毒侵袭

D. 病毒侵袭 Time Limit: 1000ms Memory Limit: 32768KB 64-bit integer IO format: %I64d      Java class name: Main 当太阳的光辉逐渐被月亮遮蔽,世界失去了光明,大地迎来最黑暗的时刻....在这样的时刻,人们却异常兴奋——我们能在有生之年看到500年一遇的世界奇观,那是多么幸福的事儿啊~~但网路上总有那么些网站,开始借着民众的好奇心,打着介绍日食的旗号,大肆传播病毒.小t不幸成为受害者之一.小t如此

xtu字符串 B. Power Strings

B. Power Strings Time Limit: 3000ms Memory Limit: 65536KB 64-bit integer IO format: %lld      Java class name: Main Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = &

xtu字符串 C. Marlon&#39;s String

C. Marlon's String Time Limit: 2000ms Memory Limit: 65536KB 64-bit integer IO format: %lld      Java class name: Main Long long ago, there was a coder named Marlon. One day he picked two string on the street. A problem suddenly crash his brain... Let

XTU OJ 1163 查询成绩 (字符串+递归)

 查询成绩 Accepted : 52   Submit : 275 Time Limit : 3000 MS   Memory Limit : 65536 KB 题目描述 波波同学是位大四的学生,同时也是一位考研er.为了考上北京邮电大学,他准备了很长时间.不久前,考研成绩终于公布了.波波登陆了成绩查询网站,发现自己密码竟然忘记了!但是幸好,他还记得其中的某些字母.请你判断,他记忆中的字母是否是正确密码的片段. 输入 多组样例,每组样例有两行.第一行为正确密码,第二行为波波记得的密码片段,

POJ2503——Babelfish(map映射+string字符串)

Babelfish DescriptionYou 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.InputInput consists of up to 100,000 diction

【POJ 2503】Babelfish(字符串)

题 给定字典,再询问. 字典与询问之间有一个空行. cin.peek()是一个指针指向当前字符. #include<iostream> #include<string> #include<map> using namespace std; map<string, string>dic; string s, t; int f; int main() { ios::sync_with_stdio(false); while(cin >> s) if(

POJ 2503 Babelfish (Trie树 或 map)

Babelfish Time Limit: 3000MS        Memory Limit: 65536K Total Submissions: 34278        Accepted: 14706 Description You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language. Fortunately

Kattis - Babelfish

Babelfish 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 100000100000 dictionary

POJ 2503 Babelfish(字典树)

Babelfish Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 35009   Accepted: 14979 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