POJ 2503 Trie

链接:

http://poj.org/problem?id=2503

题意:

给定一些字符串以及它在外星语言中的对应翻译,现在有若外星语言中的串,要把它们翻译成英语

题解:

这道题map,hash,trie都是可以做的

然而我用g++提交发现map和trie都超时了,换成c++就全都过了

map用了1141ms,trie只要485ms

代码:

31 vector<string> word;
32 int pi =1;
33
34 struct Node {
35     int next[26];
36     int value;
37     bool end;
38 }tree[MAXN * 10];
39
40 void insert(string keyword, int value) {
41     int index, p, i;
42     for (i = p = 0; keyword[i]; i++) {
43         index = keyword[i] - ‘a‘;
44         if (tree[p].next[index] == 0)
45             tree[p].next[index] = pi++;
46         p = tree[p].next[index];
47     }
48     tree[p].value = value;
49     tree[p].end = 1;
50 }
51
52 int query(string keyword) {
53     int index, p, i;
54     for (i = p = 0; keyword[i]; i++) {
55         index = keyword[i] - ‘a‘;
56         if (tree[p].next[index] == 0) return 0;
57         p = tree[p].next[index];
58     }
59     if (tree[p].end) return tree[p].value;
60     return 0;
61 }
62
63 int main() {
64     string s, a, b;
65     word.pb("eh");
66     while (getline(cin, s) && s != "") {
67         int fg = 1;
68         rep(i, 0, s.length()) {
69             if (s[i] == ‘ ‘) fg = 0;
70             else if (fg) a += s[i];
71             else b += s[i];
72         }
73         word.pb(a);
74         insert(b, word.size() - 1);
75         a = b = "";
76     }
77     while (cin >> a) cout << word[query(a)] << endl;
78     return 0;
79 }
时间: 2024-10-17 08:31:05

POJ 2503 Trie的相关文章

poj 2503 Trie树

典型的Trie树, 算是复习一下字符串吧, 就是输入有点恶心,代码如下: #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int maxn = 500000+100; struct Trie{ bool isword; int next[26]; char words[15]; Trie(){ memset(next, -1, sizeof(next

poj 2503 Babelfish (map,trie 树)

链接:poj 2503 题意:输入 语言A及翻译为语言B的词典,之后再输入语言B的单词,判断是否能从词典中找到, 若能找到,将其翻译为语言A,否则输出"eh". 思路:这题肯定得先将词典对应语言存起来,但是如果直接暴力找输入的单词是否出现过,必然会TLE 因为单词都是一对一的关系,可以用map实现 当然,trie树是用空间换时间,对于字符串的查找,在时间上有着相当的优势,因此也可以用trie树 注:sscanf函数,从一个字符串中读进与指定格式相符的数据. map实现:938MS #i

POJ 2503 字典树

这题记得以前是我们周赛的题,然后用的是map,也暴过了. 因为这两天要给大一的讲字典树,所以练练几道的代码,以防给大一搞晕了-- #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<map> #include<queue> #include<set> #include<cmath> #include

字典树模板题 POJ 2503

1 #include <cstdio> 2 #include <cstring> 3 4 char en[11],fr[11]; 5 int st; 6 struct Tire{ 7 int next[26]; 8 char eng[11]; 9 }node[200005]; 10 void insert(char *s,int cur) 11 { 12 if(*s){ 13 if(!node[cur].next[*s-'a']) 14 node[cur].next[*s-'a']

poj 2503:Babelfish(字典树,经典题,字典翻译)

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

poj 1056 Trie树判断哈夫曼编码是否合法

理解了Trie树然后就能1A   其实估计这个题随便做做就能A掉,可能不需要高级数据. 先贴吉林大学的代码模板 /*==================================================*| Trie树(k叉) | INIT: init(); | 注: tree[i][tk]>0时表示单词存在, 当然也可赋予它更多含义; \*==================================================*/ const int tk = 26,

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

POJ 2503 Babelfish(字典树)

题目链接:http://poj.org/problem?id=2503 题意:翻译单词,若在词典中找不到则输出eh. 思路:裸的字典树. 代码: #include <iostream> #include <stdio.h> #include <string.h> #include <math.h> #include <algorithm> #include <string> #include <vector> using

poj 2503 Babelfish

题目链接:http://poj.org/problem?id=2503 题目大意:就是给你一本词典,问你能否在词典中找到你要查询单词的意思,不能就输出eh 思路:map的入门级题,直接词典中的词组存到map中,然后直接查询.就是有些细节需要注意 code: #include<cstdio> #include<iostream> #include<cmath> #include<string> #include<map> using namespa