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;
}


目录
相关文章
|
6月前
|
自然语言处理 算法
KMP算法(A + B for you again—HDU - 1867 )
KMP算法(A + B for you again—HDU - 1867 )
|
6月前
|
机器学习/深度学习
N皇后问题(HDU—2253)
N皇后问题(HDU—2253)
|
算法 前端开发 程序员
「LeetCode」5-最长回文子串⚡️
「LeetCode」5-最长回文子串⚡️
121 0
「LeetCode」5-最长回文子串⚡️
|
算法 前端开发 程序员
「LeetCode」344-反转字符串⚡️
「LeetCode」344-反转字符串⚡️
113 0
「LeetCode」344-反转字符串⚡️
|
人工智能 BI 存储
|
并行计算 算法 Java
HDU 1874 畅通工程续【Floyd算法实现】
畅通工程续 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 53806    Accepted Submission(s): 20092 Problem Description 某省自从实行了很多年的畅通工程计划后,终于修建了很多路。
1086 0
|
Java
hdu1251 统计难题 【字典树】
统计难题 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131070/65535 K (Java/Others) Total Submission(s): 19292    Accepted Submission(s): ...
747 0