結果

問題 No.430 文字列検索
ユーザー latte0119latte0119
提出日時 2019-11-02 20:39:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 2,136 bytes
コンパイル時間 1,341 ms
コンパイル使用メモリ 156,216 KB
実行使用メモリ 12,592 KB
最終ジャッジ日時 2023-10-13 01:28:32
合計ジャッジ時間 2,296 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 17 ms
12,592 KB
testcase_02 AC 7 ms
5,216 KB
testcase_03 AC 7 ms
5,324 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 2 ms
4,352 KB
testcase_08 AC 3 ms
4,352 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,352 KB
testcase_11 AC 11 ms
7,716 KB
testcase_12 AC 13 ms
8,292 KB
testcase_13 AC 13 ms
8,112 KB
testcase_14 AC 11 ms
8,052 KB
testcase_15 AC 10 ms
8,136 KB
testcase_16 AC 8 ms
7,520 KB
testcase_17 AC 10 ms
8,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define int long long 

#define rep(i,n) for(int i=0;i<(n);i++)
#define pb push_back
#define eb emplace_back
#define all(v) (v).begin(),(v).end()
#define fi first
#define se second
typedef vector<int>vint;
typedef pair<int,int>pint;
typedef vector<pint>vpint;

template<typename A,typename B>inline void chmin(A &a,B b){if(a>b)a=b;}
template<typename A,typename B>inline void chmax(A &a,B b){if(a<b)a=b;}

template<class A,class B>
ostream& operator<<(ostream& ost,const pair<A,B>&p){
	ost<<"{"<<p.first<<","<<p.second<<"}";
	return ost;
}

template<class T>
ostream& operator<<(ostream& ost,const vector<T>&v){
	ost<<"{";
	for(int i=0;i<v.size();i++){
		if(i)ost<<",";
		ost<<v[i];
	}
	ost<<"}";
	return ost;
}


struct AhoCorasick{
	static const int OFF=(int)('A'); //  c \in [OFF,OFF+LEN)
	static const int LEN=26;
	struct Node{
		int nex[LEN];
		int failink;
		vector<int>suflist;
		Node():failink(0){memset(nex,-1,sizeof(nex));}
	};
	vector<Node>nds;

	AhoCorasick():nds(1){}

	int process(int k,int c){
		c-=OFF;
		while(nds[k].nex[c]==-1)k=nds[k].failink;
		return nds[k].nex[c];
	}

	void add(const string &s,int id){
		int k=0;
		for(auto c:s){
			c-=OFF;
			if(nds[k].nex[c]==-1){
				nds[k].nex[c]=nds.size();
				nds.emplace_back();
			}
			k=nds[k].nex[c];
		}
		nds[k].suflist.push_back(id);
	}

	void build(){
		queue<int>que;
		for(int i=0;i<LEN;i++){
			if(nds[0].nex[i]==-1)nds[0].nex[i]=0;
			else que.push(nds[0].nex[i]);
		}
		while(que.size()){
			int k=que.front();
			que.pop();
			for(int i=0;i<LEN;i++){
				if(nds[k].nex[i]==-1)continue;
				int nx=nds[k].nex[i];
				nds[nx].failink=process(nds[k].failink,i+OFF);

				vector<int>&curlist=nds[nds[nx].failink].suflist;
				vector<int>&nexlist=nds[nx].suflist;

				nexlist.insert(nexlist.end(),curlist.begin(),curlist.end());
				que.push(nx);
			}
		}
	}
};

signed main(){
	string S;cin>>S;
	int M;cin>>M;
	AhoCorasick ac;
	rep(i,M){
		string s;cin>>s;
		ac.add(s,i);
	}
	ac.build();

	int ans=0;
	int k=0;
	for(auto c:S){
		k=ac.process(k,c);
		ans+=ac.nds[k].suflist.size();
	}
	cout<<ans<<endl;
	return 0;
}
0