• AC自动机---病毒侵袭


    HDU 2896

    题目网址: http://acm.hust.edu.cn/vjudge/contest/view.action?cid=110773#problem/B

    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
     
    思路: 这题与原来的26个小写字母串不同,有ascii为32~126共95个可见字符,所以每个结构体中的next指针得开95个。在原有的AC自动机模板上应注意标记每个模式串的序号,在进行串匹配时,应该谨慎标记已计数的模式串,不能直接标记为-1,因为下一个串的匹配要用到。
     
    代码如下:
    #include<iostream>
    #include<algorithm>
    #include<cstdio>
    #include<cstring>
    using namespace std;
    #define N 100010
    char str[10010],keyword[205];
    int head,tail,time;
    int B[4];
    
    struct node
    {
        node *fail;
        node *next[95];///可见字符的Ascii码为32到126,所以总共有95个;
        int b;
        int count;
        node()
        {
            fail=NULL;
            b=0;
            count=-1;
            for(int i=0;i<95;i++)
            next[i]=NULL;
        }
    }*q[N];
    node *root;
    
    void insert(char *str,int x) ///建立Trie
    {
        int temp,len;
        node *p=root;
        len=strlen(str);
        for(int i=0;i<len;i++)
        {
            temp=str[i]-32;
            if(p->next[temp]==NULL)
               p->next[temp]=new node();
            p=p->next[temp];
        }
        p->count++;
        p->b=x;///在该串结束字符位置标记该串的序号;
    }
    
    void setfail() ///使用bfs初始化fail指针;
    {
        q[tail++]=root;
        while(head!=tail)
        {
            node *p=q[head++];
            node *temp=NULL;
            for(int i=0;i<95;i++)
            if(p->next[i]!=NULL)
            {
                if(p==root) ///首字母的fail必指向根
                p->next[i]->fail=root;
                else
                {
                    temp=p->fail; ///失败指针
                    while(temp!=NULL) ///2种情况结束:匹配为空or找到匹配
                    {
                        if(temp->next[i]!=NULL) ///找到匹配
                        {
                            p->next[i]->fail=temp->next[i];
                            break;
                        }
                        temp=temp->fail;
                    }
                    if(temp==NULL) ///为空则从头匹配
                    p->next[i]->fail=root;
                }
                q[tail++]=p->next[i]; ///入队(p->next[i]的fail指针已设置m完);
            }
        }
    }
    
    int query()
    {
        int index,len,result;
        node *p=root;
        result=0;
        len=strlen(str);
        for(int i=0;i<len;i++)
        {
            index=str[i]-32;
            while(p->next[index]==NULL&&p!=root) p=p->fail;///跳转失败指针
            p=p->next[index];
            if(p==NULL)
            p=root;
            node *temp=p; ///p不动,temp计算后缀串
            while(temp!=root&&temp->count!=-1)
            {   ///count=-1b标示不是模式串;
                ///若count=time表示已经计数过了;
                if(temp->count!=time)
                {
                    B[0]++;
                    int t=B[0];
                    B[t]=temp->b;
                }
                   //result++;
                temp->count=time;
                temp=temp->fail;
            }
        }
        return result;
    }
    
    int main()
    {
        int n,m,sum=0;
        scanf("%d",&n);
        getchar();
        head=tail=0;
        root = new node();
        for(int i=1;i<=n;i++)
        {
            gets(keyword);
            insert(keyword,i);
        }
        setfail();
        scanf("%d",&m);
        getchar();
        time=1;
        for(int i=1;i<=m;i++)
        {
            memset(B,0,sizeof(B));
            gets(str);
            time++;
            query();
            if(B[0])
            {
                sort(B+1,B+B[0]+1);///用B[0]记录病毒串的个数;
                printf("web %d:",i);
                for(int j=1;j<=B[0];j++)
                printf(" %d",B[j]);
                printf("
    ");
                sum++;
            }
        }
        printf("total: %d
    ",sum);
        return 0;
    }
     
  • 相关阅读:
    nmap参数原理抓包分析
    powershell脚本执行绕过powershell下脚本执行限制(cmd下执行)以及在cmd下隐藏脚本窗口
    windows创建域共享文件
    利用开机账户登录“轻松访问”创建Windows后门
    win7下建立超级隐藏账户
    利用python搭建Powersploit powershell脚本站点
    windows powershell基础
    Active Directory 域服务安装与测试
    python多线程与多进程--存活主机ping扫描以及爬取股票价格
    Anaconda基础使用
  • 原文地址:https://www.cnblogs.com/chen9510/p/5334283.html
Copyright © 2020-2023  润新知