banana band bee absolute acm ba b band abc
2 3 1 0
#include<stdio.h> #include<string.h> #define MAX 1000000+10 using namespace std; char str[1000],ask[1000]; int ch[MAX][40]; int word[MAX]; int val[MAX]; int sz; void init() { sz=1; memset(ch[0],0,sizeof(ch[0])); memset(word,0,sizeof(word)); } void in(char *s) { int i,j,l=strlen(s); int u=0; for(i=0;i<l;i++) { int c=s[i]-'a'; if(!ch[u][c]) { memset(ch[sz],0,sizeof(ch[sz])); val[sz]=0; ch[u][c]=sz++; } u=ch[u][c]; word[u]++; } val[sz]++; } int find(char *s) { int i,j,l=strlen(s); int u=0; for(i=0;i<l;i++) { int c=s[i]-'a'; if(!ch[u][c]) return 0; u=ch[u][c]; } return word[u]; } int main() { init(); while(gets(str),str[0]) { in(str); } while(scanf("%s",ask)!=EOF) { printf("%d\n",find(ask)); } return 0; }