HDU1251 统计难题(字典树)

Posted caomingpei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU1251 统计难题(字典树)相关的知识,希望对你有一定的参考价值。

HDU1251 统计难题

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

Input

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

Output

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

Sample Input

banana
band
bee
absolute
acm

ba
b
band
abc

Sample Output

2
3
1
0

题解

题意

中文题面。统计以该单词为前缀的字符串数量。

思路

建立字典树,在建树过程中,对于经过的节点,增加数值。当查找时返回该数值即可。

代码


#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<bitset>
#include<cstdlib>
#include<cmath>
#include<set>
#include<list>
#include<deque>
#include<map>
#include<queue>
using namespace std;
typedef long long ll;
const double PI = acos(-1.0);
const double eps = 1e-6;
const int INF = 0x3f3f3f3f;

#define REP(i,n) for(int i=0;i<(n);i++)

const int SIZE = 26;
const int MAXN = 1e6+10;

struct Tire{
    int sz;
    int ch[MAXN][SIZE];
    int val[MAXN];
    Tire(){
        sz = 1;
        memset(ch[0],0,sizeof(ch[0]));
        memset(val,0,sizeof(val));
    }
    int idx(char c){
        return c-'a';
    }
    void insert(char *s, int v){
        int u = 0,n = strlen(s);
        for(int i=0;i<n;i++){
            int c = idx(s[i]);
            if(!ch[u][c]){
                memset(ch[sz],0,sizeof(ch[sz]));
                val[sz] = 0;
                ch[u][c] = sz++;
            }
            u = ch[u][c];
            val[u]=val[u]+1;
        }
    }
    int query(char *s){
        int u =0,n = strlen(s);
        for(int i=0;i<n;i++){
            int c = idx(s[i]);
            if(!ch[u][c]){
                return -1;
            }
            u = ch[u][c];
        }
        return val[u];
    }
}Tree;

int main(){
    char str[15];
    while(gets(str)&&str[0]!=''){  
        Tree.insert(str,1);
    }  
    while(scanf("%s",str)!=EOF){  
        int flag = Tree.query(str);  
        if(flag==-1)    printf("%d
",0);
        else    printf("%d
",flag);
    }  
    return 0;
}

以上是关于HDU1251 统计难题(字典树)的主要内容,如果未能解决你的问题,请参考以下文章

(字典树)HDU - 1251 统计难题

HDU 1251 统计难题(字典树)

HDU-1251统计难题 ,字典树

统计难题HDU - 1251map打表或字典树字典树模板

统计难题 HDU - 1251(字典树)

HDU1251-统计难题(字典树)