标签:难解 make art 指针 前言 -- amp void 字符串
其实AC自动机就是多模式匹配,运用trie和kmp把时间复杂度优化到线性的O(N)。
trie就不多说了,相信大家都会
void put()
{
int root=1;
for(int i=1;i<=strlen(s1+1);i++)
{
if(!trie[root].c[s1[i]-'a']) trie[root].c[s1[i]-'a']=++tot;
trie[trie[root].c[s1[i]-'a']].deep=trie[root].deep+1;
root=trie[root].c[s1[i]-'a'];
}
trie[root].w=1;
}
fail(失败指针)其实就是类似于kmp的next数组,是AC自动机的核心。
如果会kmp的话,应该也不能难解。
可以通过一幅图来理解一下
void makefail()
{
int head=0,tail=1,root=1;
d[1]=1;
trie[1].fail=0;
while(head<tail)
{
int k=d[++head],p=0;
for(int i=0;i<26;i++)
{
if(!trie[k].c[i]) continue;
p=trie[k].c[i];
int z=trie[k].fail;
//沿着它父节点的失败指针走,一直要找到一个节点,直到它的儿子也包含该节点。
while(z && !trie[z].c[i]) z=trie[z].fail;
trie[p].fail=trie[z].c[i];
trie[p].fail=trie[p].fail?trie[p].fail:1;
d[++tail]=p;
}
}
}
当每次确定了一个节点后顺着fail构成了链向上走,避免漏算以现在搜到的状态为后缀的字符串。
int find()
{
int j=1;
for(int i=1;i<=n;i++)
{
int index=s[i]-'a';
while(j!=1 && !trie[j].c[index]) j=trie[j].fail;
j=trie[j].c[index];
j=j?j:1;
int p=j;
while(p!=1)
{
if(trie[p].w) ans++;
p=trie[p].fail;
trie[p].w--;
}
}
}
当然,不能直接打模板,根据每到题目的不同来分析运用,有时要加点优化。
标签:难解 make art 指针 前言 -- amp void 字符串
原文地址:https://www.cnblogs.com/chen1352/p/9048120.html