HDU 2222 AC 自动机

本文深入探讨了AC自动机的原理与应用,通过详细解析HDU2222题目,介绍了多模式匹配的实现方法。文章涵盖了AC自动机的构建过程,包括节点结构、插入操作、获取失败指针以及查询算法。适合对字符串匹配算法感兴趣的读者。
摘要由CSDN通过智能技术生成
题意

传送门 HDU 2222

题解

多模式匹配,裸的 A C AC AC 自动机。

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;
#define maxn 10000
#define maxl 1000005
struct node
{
    int cnt, a[26];
    void init()
    {
        cnt = 0;
        memset(a, 0, sizeof(a));
    }
} trie[maxn * 48];
int t, n, cnt, fail[maxn * 48];
char str[maxl];

void insert(char *s)
{
    int len = strlen(s), p = 0;
    for (int i = 0; i < len; i++)
    {
        int c = s[i] - 'a';
        if (!trie[p].a[c])
        {
            trie[p].a[c] = ++cnt;
            trie[cnt].init();
        }
        p = trie[p].a[c];
    }
    ++trie[p].cnt;
}

void getFail()
{
    queue<int> q;
    for (int i = 0; i < 26; i++)
    {
        if (trie[0].a[i])
        {
            fail[trie[0].a[i]] = 0;
            q.push(trie[0].a[i]);
        }
    }
    while (!q.empty())
    {
        int v = q.front();
        q.pop();
        for (int i = 0; i < 26; i++)
        {
            if (trie[v].a[i])
            {
                fail[trie[v].a[i]] = trie[fail[v]].a[i];
                q.push(trie[v].a[i]);
            }
            else
            {
                trie[v].a[i] = trie[fail[v]].a[i];
            }
        }
    }
}

int query(char *s)
{
    int res = 0, len = strlen(s), p = 0;
    for (int i = 0; i < len; i++)
    {
        int c = s[i] - 'a';
        p = trie[p].a[c];
        for (int j = p; j && trie[j].cnt != -1; j = fail[j])
        {
            res += trie[j].cnt, trie[j].cnt = -1;
        }
    }
    return res;
}

int main()
{
    scanf("%d", &t);
    while (t--)
    {
        scanf("%d", &n);
        char s[55];
        cnt = 0;
        trie[0].init();
        for (int i = 0; i < n; i++)
        {
            scanf(" %s", s);
            insert(s);
        }
        getFail();
        scanf(" %s", str);
        printf("%d\n", query(str));
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值