统计难题

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others)
Total Submission(s): 24521    Accepted Submission(s): 10133

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

坑坑:用G++在杭电oj上提交会一直内存超限~

  1. #include<iostream>
  2. #include<vector>
  3. #include <cstdio>
  4. #include <cstring>
  5. #include <cstdlib>
  6. #include <math.h>
  7. #include<algorithm>
  8. #define ll long long
  9. #define eps 1e-8
  10. using namespace std;
  11.  
  12. struct nodes
  13. {
  14. int cnt;
  15. struct nodes *next[];
  16. nodes()
  17. {
  18. int i;
  19. cnt = ;
  20. for(i = ; i < ; i++)
  21. next[i] = NULL;
  22. }
  23. } root,*temp;
  24.  
  25. void inserts(char *word)
  26. {
  27. nodes *cur = &root;
  28. while(*word )
  29. {
  30. int t = *word - 'a';
  31. if(cur->next[t] == NULL)
  32. {
  33. temp = (nodes *)malloc(sizeof(nodes));
  34. temp->cnt = ;
  35. for(int i = ; i < ; i++)
  36. temp->next[i] = NULL;
  37. cur->next[t] = temp;
  38. }
  39. cur = cur->next[t];
  40. cur->cnt++;
  41. word++;
  42. }
  43. }
  44.  
  45. void searchs(char *word)
  46. {
  47. nodes *cur = &root;
  48. int ans = ;
  49. while(*word && cur)
  50. {
  51. cur = cur->next[*word - 'a'];
  52. if(cur)
  53. ans = cur->cnt;
  54. else
  55. {
  56. ans = ;
  57. break;
  58. }
  59. word++;
  60. }
  61. printf("%d\n",ans);
  62. }
  63.  
  64. int main(void)
  65. {
  66. char bank[];
  67. char ss[];
  68.  
  69. while(gets(bank) && bank[] )
  70. {
  71. inserts(bank);
  72. }
  73. while(scanf("%s",ss) != -)
  74. {
  75. searchs(ss);
  76. }
  77. return ;
  78. }

新增省内存方法,STL中的map:

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cmath>
  4. #include <cstdlib>
  5. #include <cstring>
  6. #include <cmath>
  7. #include <map>
  8. #include <algorithm>
  9. #define N 500015
  10. #define INF 1000000
  11. #define ll long long
  12. using namespace std;
  13.  
  14. int main(void)
  15. {
  16. map<string,int>Q;
  17. char temp[];
  18. int l;
  19. while(gets(temp) && temp[])
  20. {
  21. l = (int)strlen(temp);
  22. for(int i = l; i > ; i--)
  23. {
  24. temp[i] = '\0';
  25. Q[temp]++;
  26. }
  27. }
  28. while(scanf("%s",temp) != -)
  29. {
  30. printf("%d\n",Q[temp]);
  31. }
  32. return ;
  33. }

hdu 1251 统计难题(trie树入门)的更多相关文章

  1. hdu 1251 统计难题 (字典树入门题)

    /******************************************************* 题目: 统计难题 (hdu 1251) 链接: http://acm.hdu.edu. ...

  2. HDU - 1251 统计难题(trie树)

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

  3. hdu 1251 统计难题 trie入门

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

  4. hdu 1251 统计难题 (字典树(Trie)<PS:C++提交不得爆内存>)

    统计难题Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others)Total Submis ...

  5. HDOJ/HDU 1251 统计难题(字典树啥的~Map水过)

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

  6. HDU 1251 统计难题(Trie)

    统计难题 [题目链接]统计难题 [题目类型]Trie &题解: Trie的模板题,只不过这题坑点在没给数据范围,改成5e5就可以过了,用的刘汝佳蓝书模板 &代码: #include & ...

  7. hdu 1251 统计难题 字典树第一题。

    统计难题 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others)Total Submi ...

  8. hdu 1251 统计难题(字典树)

    统计难题 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others) Total Subm ...

  9. HDU 1251 统计难题 字典树大水题

    今天刚看的字典树, 就RE了一发, 字典树原理还是很简单的, 唯一的问题就是不知道一维够不够用, 就开的贼大, 这真的是容易MLE的东西啊, 赶紧去学优化吧. HDU-1251 统计难题 这道题唯一的 ...

随机推荐

  1. java线程池的使用学习

    目录 1. 线程池的创建 2. 线程池的运行规则 3. 线程池的关闭 4. 线程池的使用场合 5. 线程池大小的设置 6 实现举例 1. 线程池的创建 线程池的创建使用ThreadPoolExecut ...

  2. Spring-白话事物

    什么是事物,把一组逻辑放在一起作为一个单元来提交执行,这就是事物,这不是定义,大概是这么个意思 如果你留心的话,你会看到到处都有事物,到处都会提到ACID四个特性(原子性,一致性,隔离性,持久性) R ...

  3. 抓包:MySQL Sniffer

    1.依赖文件安装 依赖glib2-devel.libpcap-devel.libnet-devel [root@VMUest ~]# yum install cmake [root@VMUest ~] ...

  4. neo4j的搭建和实例使用

    一. 简介 neo4j是当今最流行的图数据库,基于 节点+关系 的架构,保存了图形数据的基本元素.同时,数据库也支持通过基础数据元素和独特的CQL查询语法,快速方便的检索.构建复杂的图表关系结果. 二 ...

  5. AutoMapper简介

    先说说DTO DTO是个什么东东? DTO(Data Transfer Object)就是数据传输对象,说白了就是一个对象,只不过里边全是数据而已. 为什么要用DTO? 1.DTO更注重数据,对领域对 ...

  6. 原生js封装ajax代码

    方法一:(类似jQuery的封装方法) 1.ajax函数封装: /* *author: Ivan *date: 2014.06.01 *参数说明: *opts: {'可选参数'} **method: ...

  7. UOJ261 【NOIP2016】天天爱跑步 LCA+动态开点线段树

    UOJ261 [NOIP2016]天天爱跑步 Description 小c同学认为跑步非常有趣,于是决定制作一款叫做<天天爱跑步>的游戏.天天爱跑步是一个养成类游戏,需要玩家每天按时上线, ...

  8. java关键字一览表

  9. Git - fatal error : Agent admitted failure to sign using the key

    提交时出现如下问题: git push -u origin master Agent admitted failure to sign using the key. Permission denied ...

  10. 木卯先生的笔记---Object类

    1.简介 Object类是在 java.lang 包下的一个类,它是所有类的父类(也就是所有类都是Object类的子类,如果定义一个类的时候,没有指定继承的类,默认的就是继承Object类),所以Ob ...