病毒侵袭持续中
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 5260 Accepted Submission(s): 1874
Problem Description
小t非常感谢大家帮忙解决了他的上一个问题。然而病毒侵袭持续中。在小t的不懈努力下,他发现了网路中的“万恶之源”。这是一个庞大的病毒网站,他有着好多好多的病毒,但是这个网站包含的病毒很奇怪,这些病毒的特征码很短,而且只包含“英文大写字符”。当然小t好想好想为民除害,但是小t从来不打没有准备的战争。知己知彼,百战不殆,小t首先要做的是知道这个病毒网站特征:包含多少不同的病毒,每种病毒出现了多少次。大家能再帮帮他吗?
Input
第一行,一个整数N(1<=N<=1000),表示病毒特征码的个数。
接下来N行,每行表示一个病毒特征码,特征码字符串长度在1—50之间,并且只包含“英文大写字符”。任意两个病毒特征码,不会完全相同。
在这之后一行,表示“万恶之源”网站源码,源码字符串长度在2000000之内。字符串中字符都是ASCII码可见字符(不包括回车)。
接下来N行,每行表示一个病毒特征码,特征码字符串长度在1—50之间,并且只包含“英文大写字符”。任意两个病毒特征码,不会完全相同。
在这之后一行,表示“万恶之源”网站源码,源码字符串长度在2000000之内。字符串中字符都是ASCII码可见字符(不包括回车)。
Output
按以下格式每行一个,输出每个病毒出现次数。未出现的病毒不需要输出。
病毒特征码: 出现次数
冒号后有一个空格,按病毒特征码的输入顺序进行输出。
病毒特征码: 出现次数
冒号后有一个空格,按病毒特征码的输入顺序进行输出。
Sample Input
3 AA BB CC ooxxCC%dAAAoen....END
Sample Output
AA: 2 CC: 1HintHit: 题目描述中没有被提及的所有情况都应该进行考虑。比如两个病毒特征码可能有相互包含或者有重叠的特征码段。 计数策略也可一定程度上从Sample中推测。
与上一题一样,基础题
代码:
/* *********************************************** Author :xianxingwuguan Created Time :2014-2-2 18:20:20 File Name :2.cpp ************************************************ */ #pragma comment(linker, "/STACK:102400000,102400000") #include <stdio.h> #include <iostream> #include <algorithm> #include <sstream> #include <stdlib.h> #include <string.h> #include <limits.h> #include <string> #include <time.h> #include <math.h> #include <queue> #include <stack> #include <set> #include <map> using namespace std; #define INF 0x3f3f3f3f #define eps 1e-8 #define pi acos(-1.0) typedef long long ll; char str[1010][55],ss[2000200]; int cnt[1010]; struct Trie{ int next[1010*55][128]; int fail[1010*55]; int end[1010*55]; int L,root; int newnode(){ for(int i=0;i<128;i++) next[L][i]=-1; end[L++]=-1; return L-1; } void init(){ L=0; root=newnode(); } void insert(char *str,int id){ int len=strlen(str); int now=root; for(int i=0;i<len;i++){ if(next[now][str[i]]==-1) next[now][str[i]]=newnode(); now=next[now][str[i]]; } end[now]=id; } void build(){ queue<int> q; fail[root]=root; for(int i=0;i<128;i++) if(next[root][i]==-1) next[root][i]=root; else { fail[next[root][i]]=root; q.push(next[root][i]); } while(!q.empty()){ int now=q.front(); q.pop(); for(int i=0;i<128;i++) if(next[now][i]==-1) next[now][i]=next[fail[now]][i]; else { fail[next[now][i]]=next[fail[now]][i]; q.push(next[now][i]); } } } void solve(char *str){ int len=strlen(str); memset(cnt,0,sizeof(cnt)); int now=root; for(int i=0;i<len;i++){ now=next[now][str[i]]; int temp=now; while(temp!=root){ if(end[temp]!=-1) cnt[end[temp]]++; temp=fail[temp]; } } } }ac; int main() { //freopen("data.in","r",stdin); //freopen("data.out","w",stdout); int n,i,j,k,m; while(~scanf("%d",&n)){ ac.init(); for(i=1;i<=n;i++){ scanf("%s",str[i]); ac.insert(str[i],i); } ac.build(); //cout<<"haha"<<endl; scanf("%s",ss); ac.solve(ss); for(i=1;i<=n;i++) if(cnt[i]) printf("%s: %d\n",str[i],cnt[i]); } return 0; }