博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1251 统计难题
阅读量:4323 次
发布时间:2019-06-06

本文共 2682 字,大约阅读时间需要 8 分钟。

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others)

Total Submission(s): 57491    Accepted Submission(s): 20104

Problem Description
Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的前缀).
 

 

Input
输入数据的第一部分是一张单词表,每行一个单词,单词的长度不超过10,它们代表的是老师交给Ignatius统计的单词,一个空行代表单词表的结束.第二部分是一连串的提问,每行一个提问,每个提问都是一个字符串.
注意:本题只有一组测试数据,处理到文件结束.
 

 

Output
对于每个提问,给出以该字符串为前缀的单词的数量.
 

 

Sample Input
banana band bee absolute acm ba b band abc
 

 

Sample Output
2 3 1 0
 

 

Author
Ignatius.L
 

 

Recommend
Ignatius.L   |   We have carefully selected several similar problems for you:            
 
查前缀相同的单词个数,典型的字典树题目,字典树有两种实现方法,链表实现,每个结点最多有26个儿子,但是一旦结点存在,必然有二十六个空指针被分配内存。链表实现很浪费内存,效率也低,所以本地链表实现会内存溢出。
链表实现代码:
#include 
#include
#include
#include
using namespace std;typedef struct trie Trie;struct trie { int Pre; Trie *Next[26];}*head;inline Trie* build() { Trie *p = (Trie *)malloc(sizeof(Trie)); p -> Pre = 0; for(int i = 0;i < 26;i ++) { p -> Next[i] = NULL; } return p;}inline void Insert(char *s) { Trie* p = head; int i = 0; while(s[i]) { int d = s[i] - 'a'; if(p -> Next[d] == NULL) { p -> Next[d] = build(); } p = p -> Next[d]; p -> Pre ++; i ++; }}int Pre_Query(char *s) { Trie* p = head; int i = 0; while(s[i]) { int d = s[i] - 'a'; if(p -> Next[d] == NULL) { return 0; } p = p -> Next[d]; i ++; } return p -> Pre;}int main() { head = build(); char s[12]; while(gets(s) && s[0]) { Insert(s); } while(~scanf("%s",s)) { printf("%d\n",Pre_Query(s)); }}

下面说一下数组实现,按照字母出现时间,给定每个字母一个数字作为他的位置i,然后根据他是父节点的第几个儿子,再给定一个数字j,如此来确定这个字母。后面的j也可以根据字母表的顺序,皆可。这样根节点的位置其实就是0,他不表示任何字母,他的儿子表示各自开头的单词,用一个二维数组来记录,前缀个数用一个对应出现时间的一维数组来记录。

数组实现代码:

 

#include 
#include
#include
#include
using namespace std;int trie[400001][26],pre[400001],pos;inline void Insert(char *s) { int i = 0,c = 0; while(s[i]) { int d = s[i] - 'a'; if(!trie[c][d]) { trie[c][d] = ++ pos; } c = trie[c][d]; pre[c] ++; i ++; }}inline int Pre_Query(char *s) { int i = 0,c = 0; while(s[i]) { int d = s[i] - 'a'; if(!trie[c][d]) { return 0; } c = trie[c][d]; i ++; } return pre[c];}int main() { char s[12]; while(gets(s) && s[0]) { Insert(s); } while(~scanf("%s",s)) { printf("%d\n",Pre_Query(s)); }}

 

 

转载于:https://www.cnblogs.com/8023spz/p/9588572.html

你可能感兴趣的文章
python学习笔记-day10-01-【 类的扩展: 重写父类,新式类与经典的区别】
查看>>
查看端口被占用情况
查看>>
浅谈css(块级元素、行级元素、盒子模型)
查看>>
Ubuntu菜鸟入门(五)—— 一些编程相关工具
查看>>
PHP开源搜索引擎
查看>>
12-FileZilla-响应:550 Permission denied
查看>>
ASP.NET MVC 3 扩展生成 HTML 的 Input 元素
查看>>
LeetCode 234. Palindrome Linked List
查看>>
编译HBase1.0.0-cdh5.4.2版本
查看>>
结构体指针
查看>>
迭代器
查看>>
Food HDU - 4292 (结点容量 拆点) Dinic
查看>>
Ubuntu安装Sun JDK及如何设置默认java JDK
查看>>
[经典算法] 排列组合-N元素集合的M元素子集
查看>>
Codeforces 279D The Minimum Number of Variables 状压dp
查看>>
打分排序系统漫谈2 - 点赞量?点赞率?! 置信区间!
查看>>
valgrind检测linux程序内存泄露
查看>>
Hadoop以及组件介绍
查看>>
1020 Tree Traversals (25)(25 point(s))
查看>>
第一次作业
查看>>