HDU 2222 AC自动机

简介:

题意:给出多组模式串,再给出一个母串,问多少模式串是母串的字串。

裸AC自动机题,来试模板的。

#include <iostream>
#include<cstring>
#include<algorithm>
#include<cstdio>
#include<queue>
using namespace std;
char key[55],des[1000005];
const int MAX_NODE = 1000005;
const int SIGMA_SIZE = 26;
int size;
struct node
{
    node* fail;
    node* next[SIGMA_SIZE];
    int count;
    void init()
    {
        fail=NULL;
        count=0;
        memset(next, 0, sizeof(next));
    }
};
class AC_Automation
{
public:
    void init();
    void insert(char* str);
    void getFail();
    int find(char* str);
private:
    node* new_node();
    node Heap[MAX_NODE];
    node* root;
    int size;
};
node* AC_Automation::new_node()
{
    Heap[size].init();
    return &Heap[size++];
}
void AC_Automation::init()
{
    size=0;
    root=new_node();
}
void AC_Automation::insert(char* str)
{
    node* p=root;
    for( ; *str; ++str)
    {
        int ch=*str-'a';
        if(p->next[ch]==NULL)
            p->next[ch] = new_node();
        p=p->next[ch];
    }
    ++p->count;
}
void AC_Automation::getFail()
{
    queue<node*>Q;
    Q.push(root);
    while(!Q.empty())
    {
        node* tmp=Q.front();
        Q.pop();
        node* p;
        for(int i=0; i<SIGMA_SIZE; ++i)
        {
            node*& now=tmp->next[i];
            if(now != NULL)
            {
                Q.push(now);
                if(tmp==root)
                {
                    now->fail=root;
                    continue;
                }
                p = tmp->fail;
                while(p != NULL)
                {
                    if(p->next[i] != NULL)
                    {
                        now->fail = p->next[i];
                        break;
                    }
                    p=p->fail;
                }
                if(p==NULL) now->fail=root;
            }
            else
            {
                if(tmp==root) now=root;
                else now=tmp->fail->next[i];
            }
        }
    }
}
int AC_Automation::find(char* str)
{
    node* p=root;
    int cnt=0;
    for( ; *str; ++str)
    {
        char ch=*str-'a';
        p = p->next[ch];
        if(p==NULL) p=root;
        node* tmp=p;
        while(tmp!=root && tmp->count!=-1)
        {
            cnt += tmp->count;
            tmp->count=-1;
            tmp=tmp->fail;
        }
    }
    return cnt;
}
AC_Automation ac;
int main()
{
    int n,t;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        ac.init();
        for(int i=0; i<n; i++)
            scanf("%s",key),ac.insert(key);
        ac.getFail();
        scanf("%s",des);
        printf("%d\n",ac.find(des));
    }
    return 0;
}


目录
相关文章
|
Java BI 机器学习/深度学习
|
容器
hdu3388 Coprime【容斥原理】
Problem Description Please write a program to calculate the k-th positive integer that is coprime with m and n simultaneously.
1143 0
|
Java
hdu1251 统计难题 【字典树】
统计难题 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others) Total Submission(s): 19292    Accepted Submission(s): ...
754 0
|
C++ Java
AC自动机 - 多模式串匹配问题的基本运用 + 模板题 --- HDU 2222
Keywords Search Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 35655    Accepted Submission(...
746 0
|
安全 SDN

热门文章

最新文章