程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> hduoj-----(2896)病毒侵襲(ac自動機)

hduoj-----(2896)病毒侵襲(ac自動機)

編輯:C++入門知識

hduoj-----(2896)病毒侵襲(ac自動機)


Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 11909    Accepted Submission(s): 3088

 

Problem 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
 
 

Source
2009 Multi-University Training Contest 10 - Host by NIT
 
ac-自動機
構造trie樹,進行失敗指針構造(采用隊列形式),查詢,注意這裡的一個小問題:   Assic碼不是僅有字母.....
代碼:
  1 /*hdu 2896 Ac-自動機*/
  2 //#define LOCAL
  3 #include<queue>
  4 #include<cstdio>
  5 #include<cstring>
  6 #include<cstdlib>
  7 #include<iostream>
  8 #include<algorithm>
  9 using namespace std;
 10 int res;
 11 struct Trie
 12 {
 13   struct Trie *fail;
 14   struct Trie *child[127];
 15   int id;
 16 };
 17 char s1[205];
 18 char t1[10010];
 19 bool vis[505]; //用來表示是否已經訪問
 20 void _insert(char *s,Trie *root,int id)  //構造一下rie樹
 21 {
 22     Trie *cur=root,*newcur;
 23     for(int i=0;s[i];i++)
 24     {
 25         int idx=s[i]-32;
 26         if(cur->child[idx]==NULL)
 27         {
 28            newcur=new Trie;
 29           for(int j=0;j<127;j++)
 30              newcur->child[j]=NULL;
 31            newcur->fail=NULL;
 32            newcur->id=0;
 33            cur->child[idx]=newcur;
 34         }
 35        cur=cur->child[idx];
 36     }
 37     cur->id=id;
 38 }
 39  //構造失敗指針
 40 void ac_fail(Trie *root)
 41 {
 42   Trie *cur,*q ;
 43   queue<Trie*>tre;
 44   tre.push(root);
 45   while(!tre.empty())
 46   {
 47        cur=tre.front();
 48        tre.pop();
 49     for(int i=0;i<127;i++)
 50     {
 51       if(cur->child[i])
 52       {
 53         if(cur==root)
 54           cur->child[i]->fail=root;
 55         else
 56         {
 57              q=cur;
 58           while(q->fail){
 59             if(q->fail->child[i])
 60             {
 61               cur->child[i]->fail=q->fail->child[i];
 62               break;
 63             }
 64            q=q->fail;
 65           }
 66          if(!q->fail)
 67            cur->child[i]->fail=root;
 68        }
 69       tre.push(cur->child[i]);
 70      }
 71     }
 72   }
 73 }
 74 //查詢
 75 void solve(char *s,Trie *root,int id)
 76 {
 77   Trie *cur=root,*newcur;
 78   int ans[5]={0},t=0;
 79   for(int i=0 ; s[i] ;i++ )
 80   {
 81       while(cur->child[s[i]-32]==NULL&&cur!=root)
 82         cur=cur->fail;
 83      cur=cur->child[s[i]-32];
 84      if(cur==NULL) cur=root;
 85      newcur=cur;
 86      while(newcur!=root&&newcur->id>0&&vis[newcur->id]==0)
 87      {
 88        ans[t++]=newcur->id;
 89        vis[newcur->id]=1;  //表示已經訪問了
 90        newcur=newcur->fail;
 91      }
 92   }
 93   if(t>0)
 94   {
 95     sort(ans,ans+t);
 96     printf("web %d:",id);
 97     for(int i=0;i<t;i++)
 98       printf(" %d",ans[i]);
 99     puts("");
100     res++;
101   }
102 }
103 void del(Trie *root)
104 {
105   if(!root) return ;
106   for(int i=0;i<127;i++)
107   if(root->child[i])
108      del(root->child[i]);
109   delete root;
110 }
111 int main()
112 {
113   #ifdef LOCAL
114     freopen("test.in","r",stdin);
115   #endif
116   int n,m,i;
117   while(scanf("%d",&n)!=EOF)
118   {
119        Trie *root=new Trie;
120      for(i=0;i<127;i++)
121        root->child[i]=NULL;
122        root->fail=NULL;
123        root->id=0;
124      for(i=1;i<=n;i++)
125      {
126        scanf("%s",s1);
127       _insert(s1,root,i);
128      }
129       ac_fail(root);
130       scanf("%d",&m);
131       res=0;
132      for(int i=1;i<=m;i++)
133     {
134       scanf("%s",t1);
135        memset(vis,0,sizeof(vis));
136       solve(t1,root,i);
137     }
138     printf("total: %d\n",res);
139     del(root);
140   }
141    return 0;
142 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved