HDU 2896 ac自动机裸题

病毒侵袭

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

Description

当太阳的光辉逐渐被月亮遮蔽,世界失去了光明,大地迎来最黑暗的时刻。。。。在这样的时刻,人们却异常兴奋――我们能在有生之年看到500年一遇的世界奇观,那是多么幸福的事儿啊~~
但网路上总有那么些网站,开始借着民众的好奇心,打着介绍日食的旗号,大肆传播病毒。小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

稍微修改一下模板,记录模式串到达Tire末尾节点的标号要选用队列的数据结构,和c++编译。。。否则会MLE
  1 #include <iostream>
  2 #include <cstring>
  3 #include <cstdio>
  4 #include <queue>
  5 #include <cstdlib>
  6 using namespace std;
  7 const int MAX = 128;
  8 struct node {
  9     node *fail;
 10     node *next[MAX];
 11     int cnt;
 12     node() {
 13         fail = NULL;
 14         cnt = 0;
 15         memset(next, 0, sizeof(next));
 16     }
 17 };
 18 char keyword[205];
 19 char str[100010];
 20 int head, tail, id;
 21 bool vis[505];
 22 void insert(char *str, node *root) {
 23     node *p = root;
 24     int i = 0, index;
 25     while(str[i]) {
 26         index = str[i];
 27         if(p->next[index] == NULL) p->next[index] = new node();
 28         p = p->next[index];
 29         i++;
 30     }
 31     p->cnt = ++id;
 32 }
 33 void build_ac_automation(node *root) {
 34     int i;
 35     root->fail = NULL;
 36     queue<node*>q;
 37     q.push(root);
 38     while(!q.empty()) {
 39         node *temp = q.front();
 40         q.pop();
 41         node *p = NULL;
 42         for(i = 0; i < MAX; i++) {
 43             if(temp->next[i] != NULL) {
 44                 if(temp == root) temp->next[i]->fail = root;
 45                 else {
 46                     p = temp->fail;
 47                     while(p != NULL) {
 48                         if(p->next[i] != NULL) {
 49                             temp->next[i]->fail = p->next[i];
 50                             break;
 51                         }
 52                         p = p->fail;
 53                     }
 54                     if(p == NULL) temp->next[i]->fail = root;
 55
 56                 }
 57                 q.push(temp->next[i]);
 58             }
 59         }
 60     }
 61 }
 62 int query(node *root) {
 63     int i = 0, cnt = 0, index;
 64     node *p = root;
 65     while(str[i]) {
 66         index = str[i];
 67         while(p->next[index] == NULL && p != root) p = p->fail;
 68         p = p->next[index];
 69         p = (p == NULL)? root:p;
 70         node *temp = p;
 71         while(temp != root && temp->cnt != 0 && !vis[temp->cnt]) {
 72             vis[temp->cnt] = true;
 73             cnt ++;
 74             temp = temp->fail;
 75         }
 76         i++;
 77     }
 78     return cnt;
 79 }
 80 int main() {
 81     int n, m;
 82     while(scanf("%d", &n)!=EOF) {
 83         head = tail = id = 0;
 84         node * root = new node();
 85         for(int i = 1; i <= n; i++) {
 86             scanf("%s", keyword);
 87             insert(keyword, root);
 88         }
 89         build_ac_automation(root);
 90         scanf("%d", &m);
 91         int res = 0;
 92         for(int i = 1; i <= m; i++) {
 93             scanf("%s", str);
 94             memset(vis,0, sizeof(vis));
 95             int ans = query(root);
 96             if(ans > 0) {
 97                 res++;
 98                 printf("web %d:", i);
 99                 for(int j = 1; j < 505; j++) {
100                     if(vis[j]) printf(" %d", j);
101                 }
102                 printf("\n");
103             }
104         }
105         printf("total: %d\n", res);
106     }
107 //system("pause");
108     return 0;
109 }
时间: 2024-10-14 04:35:43

HDU 2896 ac自动机裸题的相关文章

HDU 2896 (AC自动机模板题)

题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2896 题目大意:多个模式串.多个匹配串.其中串的字符范围是(0~127).问匹配串中含有哪几个模式串. 解题思路: AC自动机模板题.注意一下字符范围. cnt记录这个模式串的个数改为这个模式串的index. find的时候,把找到的index压入vector里面即可. 注意有多个匹配串,每次find之后会把last->cnt修改,原因是防止一个模式串出现了多次被压入vector,所以先备份一下,

HDU 2896 AC自动机 + 细心

病毒侵袭 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 10478    Accepted Submission(s): 2724 Problem Description 当太阳的光辉逐渐被月亮遮蔽,世界失去了光明,大地迎来最黑暗的时刻....在这样的时刻,人们却异常兴奋——我们能在有生之年看到500年一遇的世界奇观,那是多么幸福的事儿

hdu 2896 AC自动机

// hdu 2896 AC自动机 // // 题目大意: // // 给你n个短串,然后给你q串长字符串,要求每个长字符串中 // 是否出现短串,出现的短串各是什么 // // 解题思路: // // AC自动机,插入单词,构建自动机,然后查询就可以了. // // 感悟: // // 哎,自己AC自动机果然刚学,还只会个模板,自动机构没构建 // 都不知道...继续加油吧~~~FIGHTING! #include <cstdio> #include <cstring> #inc

HDU 2222 AC自动机模板题

题目: http://acm.hdu.edu.cn/showproblem.php?pid=2222 AC自动机模板题 1 #include<stdio.h> 2 #include<string.h> 3 #include<queue> 4 using namespace std; 5 char key[55]; 6 char des[1111111]; 7 struct node{ 8 node *fail; 9 node *next[26]; 10 int cnt;

HDU 3065 (AC自动机模板题)

题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=3065 题目大意:多个模式串,范围是大写字母.匹配串的字符范围是(0~127).问匹配串中含有哪几种模式串,且每种模式串出现了多少次. 解题思路: AC自动机模板题.模式串的范围是大写字母,但是匹配串的范围却是(0~127). 如果Trie 开到 128 加上不回收内存,就会MLE. 实际上开到26就行了,find的时候对于c<0||c>26,强制令pos=root出现失配,并开始下一个字符就行了

hdu 2222 AC自动机(模板题)

<题目链接> 题目大意: 给你一些单词,和一个字符串,问你这个字符串中含有多少个上面的单词. 解题分析: 这是多模匹配问题,如果用KMP的话,对每一个单词,都跑一遍KMP,那么当单词数量非常多的时候,耗时会非常多,所以这里用到了AC自动机,这是一种类似于Trie树的数据结构,但是同时,它也用到了KMP算法中 next数组的思想. 下面是AC自动机指针形式的题解: #include <stdio.h> #include <stdlib.h> #include <st

HDU 2222 AC自动机(模版题)

Keywords Search Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 70290    Accepted Submission(s): 23917 Problem Description In the modern time, Search engine came into the life of everybody lik

hdu 5384 AC自动机

AC自动机裸题,真的很裸…… 先把前面的 n 个待匹配串存起来,再把后面 m 个模式串构造 AC自动机,然后再一个个询问待匹配串就没了…… 1 #include<stdio.h> 2 #include<string.h> 3 #include<queue> 4 using namespace std; 5 const int maxm=600006; 6 7 char s[100005][10005],word[10005]; 8 int nxt[maxm][26],t

HDU 2222(AC自动机模板题)

题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2222 题目大意:多个模式串.问匹配串中含有多少个模式串.注意模式串有重复,所以要累计重复结果. 解题思路: AC自动机模板题. 一开始使用LRJ的坑爹静态模板,不支持重复的模式串. 在做AC自动机+DP的时候,扒了zcwwzdjn大神的动态优化(失配指向root)写法,以及借鉴了网上的AC自动机模板, 搞出了这么一个支持重复串的模板. #include "cstdio" #include