zoukankan      html  css  js  c++  java
  • hdu2222Keywords Search

    Problem Description
    In the modern time, Search engine came into the life of everybody like Google, Baidu, etc. Wiskey also wants to bring this feature to his image retrieval system. Every image have a long description, when users type some keywords to find the image, the system will match the keywords with description of image and show the image which the most keywords be matched. To simplify the problem, giving you a description of image, and some keywords, you should tell me how many keywords will be match.
     
    Input
    First line will contain one integer means how many cases will follow by. Each case will contain two integers N means the number of keywords and N keywords follow. (N <= 10000) Each keyword will only contains characters 'a'-'z', and the length will be not longer than 50. The last line is the description, and the length will be not longer than 1000000.
     
    Output
    Print how many keywords are contained in the description.
     
    Sample Input
    1 5 she he say shr her yasherhs
     
    Sample Output
    3
     
    Author
    Wiskey
    #include<iostream>
    #include<cstring>
    #include<cstdio>
    #include<cmath>
    #include<queue>
    
    using namespace std;
    
    struct node
    {
        node* next[26];
        int end;
        node* fail;
        node()
        {
            for(int i = 0;i<26;i++)
                next[i] = NULL;
            fail = NULL;
            end = 0;
        }
    };
    node* root;
    char s[51],ss[1100000];
    void insert()
    {
        int i,l = strlen(s);
        node* k = root;
        for(i  = 0;i<l;i++)
        {
            int id = s[i]-'a';
            if(k->next[id] == NULL)
                k->next[id] = new node();
            k = k->next[id];
        }
        k->end++;
    }
    void build()
    {
        queue<node*> q;
        for(int i = 0;i<26;i++)
        {
            node* k = root;
            if(k->next[i] != NULL)
            {
                k->next[i]->fail = root;
                q.push(k->next[i]);
            }
        }
        while(!q.empty())
        {
            node*k = q.front();
            q.pop();
            for(int i = 0;i<26;i++)
            {
                if(k->next[i]!=NULL)
                {
                    node*t = k->fail;
                    while(t!=root&&t->next[i] == NULL) t = t->fail;
                    if(t->next[i] != NULL) t = t->next[i];
                    k->next[i]->fail = t;
                    q.push(k->next[i]);
                }
            }
        }
    }
    int ask()
    {
        int i,l = strlen(ss),ans = 0;
        node *k = root;
        for(i = 0;i<l;i++)
        {
            int id = ss[i]-'a';
            while(k!=root&&k->next[id] == NULL) k = k->fail;
            if(k->next[id]!=NULL) k = k->next[id];
            node* t = k;
            while(t!=root)
            {
                ans += t->end;
                t->end = 0;
                t = t->fail;
            }
        }
        return ans;
    }
    
    
    int main()
    {
        int z;
        int n,i,j,k;
        cin>>z;
        while(z--)
        {
            root = new node();
            scanf("%d",&n);
            while(n--)
            {
                scanf("%s",s);
                insert();
            }
            build();
            scanf("%s",ss);
            printf("%d
    ",ask());
        }
        return 0;
    }
  • 相关阅读:
    正则表达式 之领宽断言
    bat(续七)-for语句(循环结构)
    RBAC权限管理
    Redis缓存服务搭建及实现数据读写
    Myeclipse集成Maven(图文说明)
    实习第四周
    POJ 3461 Oulipo KMP算法题解
    原创文章
    apue和unp的学习之旅07——多种边界条件的讨论
    单链表的实现
  • 原文地址:https://www.cnblogs.com/wos1239/p/4398942.html
Copyright © 2011-2022 走看看