hdu-1251(字典树)

字典树模板题。

ps:数组要开大,40w左右才行,不然疯狂re

代码:

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
using namespace std;
int root;
int tot=1;
int trie[400500][30];
int cnt[400500];
void init()//最后清空,节省时间
{
    memset(trie,0,sizeof(trie));
    memset(cnt,0,sizeof(cnt));
   tot=1;//RE有可能是这里的问题
}
void build_trie(char *s)
{
    int len=strlen(s);
    root=0;
    for(int i=0;i<len;i++)
    {
        int id=s[i]-‘a‘;
        if(!trie[root][id])
            trie[root][id]=++tot;
        root=trie[root][id];
        cnt[root]++;
    }
}
int query(char *s)
{
    int len=strlen(s);
    root=0;
    for(int i=0;i<len;i++)
    {
        int id=s[i]-‘a‘;
        if(!trie[root][id])
            return false;
        root=trie[root][id];
    }
    return cnt[root];
}
int main()
{
    char s[105];
    char t[105];
    int ans=0;
    init();
    while(gets(s))
    {
        int x=strlen(s);
        if(x==0)
            break;
        build_trie(s);
    }
    while(gets(t))
    {
        int flag=query(t);
        printf("%d\n",flag);
    }
}

  

原文地址:https://www.cnblogs.com/huangdao/p/9499501.html

时间: 2024-10-12 09:45:27

hdu-1251(字典树)的相关文章

HDU 1251 字典树入门

统计难题 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others)Total Submission(s): 17177    Accepted Submission(s): 7410 Problem Description Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的前

hdu 1251(字典树)

统计难题 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others)Total Submission(s): 29183    Accepted Submission(s): 11454 Problem Description Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的

hdu 1251 字典树的应用

这道题看了大神的模板,直接用字典树提交的会爆内存,用stl 里的map有简单有快 #include <iostream> #include <map> #include <cstring> #include <string> using namespace std; int main() { int i, len; char str[10]; map<string, int> m; while( gets(str) ) { len = strle

hdu 1251 字典树模板题 ---多串 查找单词出现次数

这道题题目里没有给定数据范围 我开了2005  疯狂的WA 然后开了50000, A掉  我以为自己模板理解错  然后一天没吃饭,饿得胃疼还是想着把这题A掉再去吃,谁知竟然是这样的问题,,,呵呵~~~ 只是记录下这道题学到的方法吧: for(rt = 0; *s; rt = nxt, ++s) { nxt=tree[rt][*s-tb]; if(!nxt) { nxt=tree[rt][*s-tb]=top; memset(tree[top],0,sizeof(tree[top])); top+

HDU 1800 字典树

Flying to the Mars Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 10065    Accepted Submission(s): 3270 Problem Description In the year 8888, the Earth is ruled by the PPF Empire . As the popul

hdoj 1251 字典树

代码: #include <stdio.h>#define  MAX    26 typedef struct TrieNode{     int nCount;      struct TrieNode *next[MAX];}TrieNode;TrieNode Memory[1000000];int allocp = 0; TrieNode *CreateTrieNode(){    int i;    TrieNode *p;    p = &Memory[allocp++]; 

hdu 1075 字典树

// hdu 1075 字典树 // // 题目大意: // // 给你一个字典,即有两个字符串,一个是英文,一个是火星文,然后 // 输入一段火星文,要你翻译成英文. // // 解题思路: // // 字典树,查字典嘛,有就输出查到的,没有原样输出.将火星文插入到 // 字典树中,然后在字典输中查找.找到了,输出对应的英文,否则,原样输 // 出. // // 感悟: // // 题目确实很简单,但是,没告诉数据范围啊,导致我一直RE,原来单词 // 可能对应很长的英文啊,找人家ac的开数组

HDU ACM 1251字典树(Trie)

简单的字典树题,首先简历字典树,在查找. #include<iostream> using namespace std; struct Tri { int v; Tri* child[26]; } root; void Init() { root.v=0; for(int i=0;i<26;i++) { root.child[i]=NULL; } } void CreateDic(char* str) { Tri* p; int j; p=&root; while(*str!=N

HDU 1251 Trie树模板题

1.HDU 1251 统计难题  Trie树模板题,或者map 2.总结:用C++过了,G++就爆内存.. 题意:查找给定前缀的单词数量. #include<iostream> #include<cstring> #include<cmath> #include<queue> #include<algorithm> #include<cstdio> #define max(a,b) a>b?a:b #define F(i,a,b

HDU 5384 字典树、AC自动机

题目:http://acm.hdu.edu.cn/showproblem.php?pid=5384 用字典树.AC自动机两种做法都可以做 1 #include<stdio.h> 2 #include<string.h> 3 #include<string> 4 #include<iostream> 5 using namespace std; 6 struct node{ 7 int cnt; 8 node *next[26]; 9 node(){ 10 c