AC自动机
1.常见的就是给出n个单词,再给出一段包含m个字符的文章,让你找出有多少个单词在文章里出现过。
2.算法分为3步:构造一棵Trie树,构造失败指针和模式匹配过程。简单来说,AC自动机是用来进行多模式匹配(单个主串,多个模式串)的高效算法
题目:
Keywords Search
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.
InputFirst 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.
OutputPrint how many keywords are contained in the description.Sample Input
1 5 she he say shr her yasherhs
Sample Output
3
题解:
1.要用到的结构
struct node { int cnt; node *fail;//失败指针 node *next[26]; }*qu[500005];
2.进行结点的初始化,建树
void Init(node *root)//结点的初始化 { root->cnt=0; root->fail=NULL; for(int i=0;i<26;i++) root->next[i]=NULL; } void build(char *keyword)//构建Trie树 { node *p,*q; int i,v; int len=strlen(keyword); for(i=0,p=root;i<len;i++) { v=keyword[i]-'a'; if(p->next[v]==NULL) { q=(struct node *)malloc(sizeof(node)); Init(q); p->next[v]=q;//结点链接 } p=p->next[v];//指针移动到下一个结点 } p->cnt++;//单词最后一个结点cnt++,代表一个单词 }
3.构造失败指针
失败指针的作用就是将主串某一位之前的所有可以与模式串匹配的单词快速在Trie树中找出。
这也是trie树与AC自动机的区别
void build_AC(node *root) { int head=0,tail=0;//队列头、尾指针 qu[head++]=root;//先将root入队 while(head!=tail) { node *p=NULL; node *temp=qu[tail++]; for(int i=0;i<26;i++) { if(temp->next[i]!=NULL) { if(temp==root) temp->next[i]->fail=root; else { p=temp->fail; while(p!=NULL) { if(p->next[i]!=NULL) { temp->next[i]->fail=p->next[i]; break; } p=p->fail; } if(p==NULL) temp->next[i]->fail=root; } qu[head++]=temp->next[i]; } } } }
4.模式匹配
int query(node *root) { int i,v,count=0; node *p=root; int len=strlen(s); for(i=0;i<len;i++) { v=s[i]-'a'; while(p->next[v]==NULL && p!=root) p=p->fail; p=p->next[v]; if(p==NULL)//若指针返回为空,则没有找到与之匹配的字符 p=root; node *temp=p; while(temp!=root) { if(temp->cnt>=0) { count+=temp->cnt; temp->cnt=-1;//标记 } else break; temp=temp->fail; } } return count; }
详细过程参考https://blog.csdn.net/liu940204/article/details/51347064
详细代码
#include <stdio.h> #include <stdlib.h> #include <string.h> struct node { int cnt; node *fail;//失败指针 node *next[26]; }*qu[500005]; char s[1000005];//主字符串 char keyword[55];//需要查找的单词 node *root; void Init(node *root)//结点的初始化 { root->cnt=0; root->fail=NULL; for(int i=0;i<26;i++) root->next[i]=NULL; } void build(char *keyword)//构建Trie树 { node *p,*q; int i,v; int len=strlen(keyword); for(i=0,p=root;i<len;i++) { v=keyword[i]-'a'; if(p->next[v]==NULL) { q=(struct node *)malloc(sizeof(node)); Init(q); p->next[v]=q;//结点链接 } p=p->next[v];//指针移动到下一个结点 } p->cnt++;//单词最后一个结点cnt++,代表一个单词 } void build_AC(node *root) { int head=0,tail=0;//队列头、尾指针 qu[head++]=root;//先将root入队 while(head!=tail) { node *p=NULL; node *temp=qu[tail++]; for(int i=0;i<26;i++) { if(temp->next[i]!=NULL) { if(temp==root) temp->next[i]->fail=root; else { p=temp->fail; while(p!=NULL) { if(p->next[i]!=NULL) { temp->next[i]->fail=p->next[i]; break; } p=p->fail; } if(p==NULL) temp->next[i]->fail=root; } qu[head++]=temp->next[i]; } } } } int query(node *root) { int i,v,count=0; node *p=root; int len=strlen(s); for(i=0;i<len;i++) { v=s[i]-'a'; while(p->next[v]==NULL && p!=root) p=p->fail; p=p->next[v]; if(p==NULL)//若指针返回为空,则没有找到与之匹配的字符 p=root; node *temp=p; while(temp!=root) { if(temp->cnt>=0) { count+=temp->cnt; temp->cnt=-1;//标记 } else break; temp=temp->fail; } } return count; } int main() { int T,n; scanf("%d",&T); while(T--) { root=(struct node *)malloc(sizeof(node)); Init(root); scanf("%d",&n); for(int i=0;i<n;i++) { scanf(" %s",keyword); build(keyword); } build_AC(root); scanf(" %s",s); printf("%d ",query(root)); } return 0; }
但网路上总有那么些网站,开始借着民众的好奇心,打着介绍日食的旗号,大肆传播病毒。小t不幸成为受害者之一。小t如此生气,他决定要把世界上所有带病毒的网站都找出来。当然,谁都知道这是不可能的。小t却执意要完成这不能的任务,他说:“子子孙孙无穷匮也!”(愚公后继有人了)。
万事开头难,小t收集了好多病毒的特征码,又收集了一批诡异网站的源码,他想知道这些网站中哪些是有病毒的,又是带了怎样的病毒呢?顺便还想知道他到底收集了多少带病毒的网站。这时候他却不知道何从下手了。所以想请大家帮帮忙。小t又是个急性子哦,所以解决问题越快越好哦~~
Input第一行,一个整数N(1<=N<=500),表示病毒特征码的个数。
接下来N行,每行表示一个病毒特征码,特征码字符串长度在20—200之间。
每个病毒都有一个编号,依此为1—N。
不同编号的病毒特征码不会相同。
在这之后一行,有一个整数M(1<=M<=1000),表示网站数。
接下来M行,每行表示一个网站源码,源码字符串长度在7000—10000之间。
每个网站都有一个编号,依此为1—M。
以上字符串中字符都是ASCII码可见字符(不包括回车)。
Output依次按如下格式输出按网站编号从小到大输出,带病毒的网站编号和包含病毒编号,每行一个含毒网站信息。
web 网站编号: 病毒编号 病毒编号 …
冒号后有一个空格,病毒编号按从小到大排列,两个病毒编号之间用一个空格隔开,如果一个网站包含病毒,病毒数不会超过3个。
最后一行输出统计信息,如下格式
total: 带病毒网站数
冒号后有一个空格。
Sample Input
3 aaa bbb ccc 2 aaabbbccc bbaacc
Sample Output
web 1: 1 2 3 total: 1
输出病毒编号要用变量标记一下。统计有哪几个病毒出现过用mark数组
#include <iostream> #include<cstdio> #include<cstring> using namespace std; const int maxn=100010; char str[10010],keyword[201],mark[501]; int num,cas; struct node { node *fail; node *next[95]; int cnt,px; node() { fail=NULL; cnt =0; px=0; for(int i=0;i<95;i++) { next[i]=NULL; } } }*q[maxn]; node *root; void build(char *s) { int temp,len; node *p=root; for(int i=0;s[i]!='