Keywords Search(AC自动机板子题)

在这里插入图片描述

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn =  1e6+9;

int trie[maxn][26];
int cntword[maxn];  
int fail[maxn];   
int cnt = 0;

void insertWords(string s){
    int root = 0;
    for(int i=0;i<s.size();i++){
        int next = s[i] - 'a';
        if(!trie[root][next])
            trie[root][next] = ++cnt;
        root = trie[root][next];
    }
    cntword[root]++; 
}
void getFail(){
    queue <int>q;
    for(int i=0;i<26;i++){     
        if(trie[0][i]){
            fail[trie[0][i]] = 0;
            q.push(trie[0][i]);
        }
    }

    while(!q.empty()){
        int now = q.front();
        q.pop();

        for(int i=0;i<26;i++){      
            if(trie[now][i]){

                fail[trie[now][i]] = trie[fail[now]][i];
                q.push(trie[now][i]);
            }
            else
                trie[now][i] = trie[fail[now]][i];
        }
    }
}


int query(string s){
    int now = 0,ans = 0;
    for(int i=0;i<s.size();i++){    
        now = trie[now][s[i]-'a']; 
        for(int j=now;j && cntword[j]!=-1;j=fail[j]){
            ans += cntword[j];
            cntword[j] = -1;   
        }
    }
    return ans;
}
int t;
int main() {
    ios::sync_with_stdio(false); 
	cin.tie(0); cout.tie(0);
	cin>>t;
    while(t--){
    	cnt = 0;
    	memset(trie,0,sizeof trie);
    	memset(cntword,0,sizeof cntword);
    	memset(fail,0,sizeof fail);
		int n;
    	string s;
    	cin >> n;
    	for(int i=0;i<n;i++){
        	cin >> s ;
        	insertWords(s);
    	}
    	fail[0] = 0;
    	getFail();
    	cin >> s ;
    	cout << query(s) << endl;
	}
}



  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值