D. 病毒侵袭

Time Limit: 1000ms
Memory Limit: 32768KB

64-bit integer IO format: %I64d      Java class name: Main

 
当太阳的光辉逐渐被月亮遮蔽,世界失去了光明,大地迎来最黑暗的时刻。。。。在这样的时刻,人们却异常兴奋——我们能在有生之年看到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 解题:AC自动机的模板题。。。。哎。。。改了一天。。。。终于满意了。。。。。。。。。。。。
 #include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <vector>
#include <climits>
#include <algorithm>
#include <cmath>
#include <queue>
#define LL long long
#define INF 0x3f3f3f
using namespace std;
const int maxn = ;
struct trie {
int cnt,id,wd[],fail;
void init() {
id = cnt = ;
fail = -;
memset(wd,-,sizeof(wd));
}
} dic[maxn];
int tot,ans[],total;
void insertWord(int root,int _id,char *s) {
for(int i = ; s[i]; i++) {
int k = s[i] - ;
if(dic[root].wd[k] == -) {
dic[tot].init();
dic[root].wd[k] = tot++;
}
root = dic[root].wd[k];
}
dic[root].cnt++;
dic[root].id = _id;
}
void build(int root) {
queue<int>q;
q.push(root);
while(!q.empty()) {
int u = q.front();
q.pop();
for(int i = ; i < ; i++) {
if(dic[u].wd[i] == -) continue;
if(!u) dic[dic[u].wd[i]].fail = ;//如果是第二层的节点
else {
int v = dic[u].fail;
while(v && dic[v].wd[i] == -)
v = dic[v].fail;
//回溯到离根较远并与当前字符相同的点
if(dic[v].wd[i] != -)
dic[dic[u].wd[i]].fail = dic[v].wd[i];
else dic[dic[u].wd[i]].fail = ;
}
q.push(dic[u].wd[i]);
}
}
} void query(int root,char *s) {
bool vis[] = {false};
for(int i = ; s[i]; i++) {
int k = s[i] - ;
while(root && dic[root].wd[k] == -)
root = dic[root].fail;//不如当前字符匹配,回溯
root = dic[root].wd[k];//dic[root].wd[k]与当前字符匹配
if(root == -) root = ;//trie树上不存在与之匹配的
else {
int v = root;
while(v && !vis[dic[v].id]) {
//如果当前节点访问过了,
//从当前节点的回溯路径上的节点也被访问了
if(dic[v].cnt) {
vis[dic[v].id] = true;
ans[total++] = dic[v].id;
}
v = dic[v].fail;
}
}
}
}
int main() {
int n,m,i,j,t = ;
char word[],text[];
scanf("%d",&n);
dic[].init();
tot = ;
for(i = ; i <= n; i++) {
scanf("%s",word);
insertWord(,i,word);
}
build();
scanf("%d",&m);
for(i = ; i <= m; i++) {
total = ;
scanf("%s",text);
query(,text);
if(total) {
t++;
sort(ans,ans+total);
printf("web %d:",i);
for(j = ; j < total; j++)
printf(" %d",ans[j]);
printf("\n");
}
}
printf("total: %d\n",t);
return ;
}

Trie图

 #include <bits/stdc++.h>
using namespace std;
const int maxn = ;
int ret;
struct Trie{
int ch[maxn][],fail[maxn],cnt[maxn],tot;
int newnode(){
memset(ch[tot],,sizeof ch[tot]);
fail[tot] = cnt[tot] = ;
return tot++;
}
void init(){
tot = ;
newnode();
}
void insert(char *str,int id,int root = ){
for(int i = ; str[i]; ++i){
if(!ch[root][str[i]-]) ch[root][str[i]-] = newnode();
root = ch[root][str[i]-];
}
cnt[root] = id;
}
void build(int root = ){
queue<int>q;
for(int i = ; i < ; ++i)
if(ch[root][i]) q.push(ch[root][i]);
while(!q.empty()){
root = q.front();
q.pop();
for(int i = ; i < ; ++i){
if(ch[root][i]){
fail[ch[root][i]] = ch[fail[root]][i];
q.push(ch[root][i]);
}else ch[root][i] = ch[fail[root]][i];
}
}
}
void query(char *str,int id,int root = ){
vector<int>ans;
bool vis[] = {false};
for(int i = ; str[i]; ++i){
int x = root = ch[root][str[i]-];
while(x && !vis[cnt[x]]){
if(cnt[x]) ans.push_back(cnt[x]);
vis[cnt[x]] = true;
x = fail[x];
}
}
if(ans.size()){
++ret;
sort(ans.begin(),ans.end());
printf("web %d:",id);
for(auto it:ans) printf(" %d",it);
putchar('\n');
}
}
}ac;
char str[maxn];
int main(){
int n,m;
while(~scanf("%d",&n)){
ac.init();
for(int i = ; i <= n; ++i){
scanf("%s",str);
ac.insert(str,i);
}
scanf("%d",&m);
ac.build();
ret = ;
for(int i = ; i <= m; ++i){
scanf("%s",str);
ac.query(str,i);
}
printf("total: %d\n",ret);
}
return ;
}

xtu字符串 D. 病毒侵袭的更多相关文章

  1. 【HDU2896】病毒侵袭 AC自动机

    [HDU2896]病毒侵袭 Problem Description 当太阳的光辉逐渐被月亮遮蔽,世界失去了光明,大地迎来最黑暗的时刻....在这样的时刻,人们却异常兴奋--我们能在有生之年看到500年 ...

  2. hdu3065 病毒侵袭持续中

    题目地址:http://acm.split.hdu.edu.cn/showproblem.php?pid=3065 题目: 病毒侵袭持续中 Time Limit: 2000/1000 MS (Java ...

  3. hdu2896 病毒侵袭 ac自动机

    地址:http://acm.split.hdu.edu.cn/showproblem.php?pid=2896 题目: 病毒侵袭 Time Limit: 2000/1000 MS (Java/Othe ...

  4. HDU 2896 病毒侵袭(AC自动机)

    病毒侵袭 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submis ...

  5. AC自动机---病毒侵袭持续中

    HDU 3065 题目网址: http://acm.hust.edu.cn/vjudge/contest/view.action?cid=110773#problem/C Description 小t ...

  6. HDU 3065 病毒侵袭持续中

    HDU 3065 病毒侵袭持续中 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) ...

  7. hdu----(3065)病毒侵袭持续中(AC自动机)

    病毒侵袭持续中 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Sub ...

  8. hduoj-----(2896)病毒侵袭(ac自动机)

    病毒侵袭 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submis ...

  9. 【HDU3065】 病毒侵袭持续中(AC自动机)

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission( ...

随机推荐

  1. 解题报告:poj 3259 Wormholes(入门spfa判断负环)

    Description While exploring his many farms, Farmer John has discovered a number of amazing wormholes ...

  2. Android获取声音长度

    代码 MediaMetadataRetriever metaRetriever = new MediaMetadataRetriever(); metaRetriever.setDataSource( ...

  3. $("xxx").attr添加属性的时候不好用

    今天在工作中碰到了使用$(this).attr("selected","selected")为option属性添加默认值时发现时而好用 时而不好用,后经百度发现 ...

  4. Java URL 中文乱码解决办法

    一. 统一所有的编码格式 (1)JSP页面设置:<%@ page language="java" import="java.util.*" pageEnc ...

  5. 洛谷 P1910 L国的战斗之间谍(水题日常)

    题目背景 L国即将与I国发动战争!! 题目描述 俗话说的好:“知己知彼,百战不殆”.L国的指挥官想派出间谍前往I国,于是,选人工作就落到了你身上. 你现在有N个人选,每个人都有这样一些数据:A(能得到 ...

  6. window Chrome 下允许跨域访问服务端接口设置

    关闭chrome,使用cmd命令进入chrome安装目录cd C:\Program Files (x86)\Google\Chrome\Application 然后使用命令打开chromechrome ...

  7. Jquery中children与find之间的区别

    <table id="tb"> <tr> <td>0</td> <td>1</td> <td>2 ...

  8. 优先队列 || POJ 1442 Black Box

    给n个数,依次按顺序插入,第二行m个数,a[i]=b表示在第b次插入后输出第i小的数 *解法:写两个优先队列,q1里由大到小排,q2由小到大排,保持q2中有i-1个元素,那么第i小的元素就是q2的to ...

  9. packet capture

    1.下载地址:https://www.coolapk.com/apk/app.greyshirts.sslcapture

  10. css内容补充之其它

    1.overflow 当图片大小,超出div的大小时,可以指定overflow值为auto(带滚动条).hidden(隐藏,只显示一块): hover 当鼠标移动到当前标签上时,以下css属性才生效: