思路:直接查找即可。
注意:如果不是’A’-‘Z’之间,直接赋值为26即可,因为反正也不会找到它的。
http://acm.hdu.edu.cn/showproblem.php?pid=3065
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#define rep(i,a,b) for(int i = (a) ; i <= (b) ; i ++)
#define rrep(i,a,b) for(int i = (b) ; i >= (a) ; i --)
#define repS(it,p) for(auto it = p.begin() ; it != p.end() ; it ++)
#define repE(p,u) for(Edge * p = G[u].first ; p ; p = p -> next)
#define cls(a,x) memset(a,x,sizeof(a))
#define eps 1e-8
using namespace std;
const int MOD = 1e9+7;
const int INF = 0x3f3f3f3f;
typedef long long LL;
typedef unsigned long long ULL;
int T,n,m,k;
int fx[] = {0,1,-1,0,0};
int fy[] = {0,0,0,-1,1};
const int MAXN = 50005;
const int MAX_SIZE = 27;
int tot ;
char s[2000005];
char sc[1005][55];
int virus[4];
int recv[4];
int ans[1005];
class AC_automation {
private:
struct Node {
int next[MAX_SIZE];
int stat ;
}t[MAXN];
int fail[MAXN];
public:
void init() {
tot = 1; cls(t,0); cls(fail,0);
}
void reset_stat(int len) {
rep(i,1,len) t[recv[i]].stat = virus[i];
}
void insert(char * str,int idx) {
int len = strlen(str) - 1;
rep(i,0,len) str[i] -= 'A';
int pre = 0 , nxt = 0 ;
rep(i,0,len) {
nxt = t[pre].next[str[i]];
if(nxt == 0) {
t[pre].next[str[i]] = tot ;
nxt = tot ++;
}
pre = nxt;
}
t[nxt].stat = idx;
rep(i,0,len) str[i] += 'A';
}
void get_fail() {
queue<int>q;
q.push(0);
while(!q.empty()) {
int u = q.front();
rep(i,0,MAX_SIZE-1) {
if(t[u].next[i]) {
q.push(t[u].next[i]);
int tmp = u;
while(fail[tmp]) {
if(t[fail[tmp]].next[i]) {
fail[t[u].next[i]] = t[fail[tmp]].next[i]; break;
}
tmp = fail[tmp];
}
if(u != 0 && !fail[t[u].next[i]]) {
if(t[0].next[i]) fail[t[u].next[i]] = t[0].next[i];
}
}
}
q.pop();
}
}
void query(char * str) {
int idx = 0;
int len = strlen(str) - 1;
rep(i,0,len) {
if(str[i] >= 'A' && str[i] <= 'Z') str[i] -= 'A';
else str[i] = 26;
}
int now = 0;
rep(i,0,len) {
while(now && (!t[now].next[str[i]])) now = fail[now];
now = t[now].next[str[i]];
int tmp = now;
while(tmp) {
if(t[tmp].stat) {
ans[t[tmp].stat] ++;
}
tmp = fail[tmp];
}
}
}
};
AC_automation ac;
void input() {
ac.init();
getchar();
rep(i,1,n) {
gets(sc[i]);
ac.insert(sc[i],i);
}
ac.get_fail();
}
void solve() {
scanf("%s",s);
cls(ans,0);
ac.query(s);
rep(i,1,n) {
if(ans[i]) {
printf("%s: %d\n",sc[i],ans[i]);
}
}
}
int main(void) {
while(~scanf("%d",&n)) {
input();
solve();
}
return 0;
}