3 AA BB CC ooxxCC%dAAAoen....END
AA: 2 CC: 1HintHit: 题目描述中没有被提及的所有情况都应该进行考虑。比如两个病毒特征码可能有相互包含或者有重叠的特征码段。 计数策略也可一定程度上从Sample中推测。
#include <cstdio> #include <queue> #include <cstring> #define KIND 26 #define SIZE 2000100 using namespace std ; int d[1010] ; char t[1010][55] , des[SIZE]; struct Trie{ int index ; Trie* next[KIND] ; Trie *fail ; Trie() { for(int i = 0 ; i < KIND ; ++i) next[i] = NULL ; fail = NULL ; index = 0 ; } }*root; void insert(char str[] , int index) { int len = strlen(str) ; Trie *t = root ; for(int i = 0 ; i < len ; ++i) { if(t->next[str[i]-'A'] == NULL) { t->next[str[i]-'A'] = new Trie() ; } t = t->next[str[i]-'A'] ; } t->index = index ; } void bfs() { queue<Trie *> que ; que.push(root) ; while(!que.empty()) { Trie *now = que.front() ; que.pop() ; for(int i = 0 ; i < KIND ; ++i) { if(now->next[i] != NULL) { if(now == root) now->next[i]->fail = root ; else { Trie *p = now->fail ; while(p) { if(p->next[i]) { now->next[i]->fail = p->next[i] ; break ; } p = p->fail ; } if(!p) now->next[i]->fail = root ; } que.push(now->next[i]) ; } } } } void query(char str[]) { int len = strlen(str) , i = 0; Trie *now = root ; while(str[i]) { if(str[i]<'A' || str[i]>'Z') { ++i ; now = root ; continue ; } int pos = str[i]-'A' ; while(now->next[pos]==NULL && now != root) now = now->fail ; now = now->next[pos] ; if(now == NULL) now = root ; Trie * temp = now ; while( temp!=root ) { d[temp->index] ++ ; temp = temp->fail ; } ++i ; } } void del(Trie *t) { for(int i = 0 ; i < KIND ; ++i) { if(t->next[i]) del(t->next[i]) ; } delete t ; } int main() { int n ; while(~scanf("%d",&n)) { root = new Trie() ; getchar() ; for(int i = 1 ; i <= n ; ++i) { gets(t[i]) ; insert(t[i] , i) ; d[i] = 0 ; } gets(des) ; bfs() ; query(des) ; for(int i = 1 ; i <= n ; ++i ) { if(d[i]>0) printf("%s: %d\n",t[i],d[i]) ; } del(root) ; } return 0 ; }
hdu 3065 病毒侵袭持续中 AC自动机模板题 ,,一A。
原文地址:http://blog.csdn.net/lionel_d/article/details/45198975