結果

問題 No.430 文字列検索
ユーザー 沙耶花沙耶花
提出日時 2019-08-13 08:14:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,973 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 171,348 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-10 00:28:15
合計ジャッジ時間 16,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1,054 ms
5,248 KB
testcase_02 AC 945 ms
5,248 KB
testcase_03 AC 806 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 1,973 ms
6,820 KB
testcase_12 AC 1,962 ms
6,816 KB
testcase_13 AC 1,950 ms
6,820 KB
testcase_14 AC 1,867 ms
6,820 KB
testcase_15 AC 1,643 ms
5,248 KB
testcase_16 AC 1,056 ms
5,248 KB
testcase_17 AC 993 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x))%modulo)
#define Inf 10000000000000000

struct KMP{
	string S;
	vector<int> A;
	KMP(string s){
		S = s;
		A.resize(S.size()+1,-1);
		
		
		int x = -1;
		for(int i=0;i<S.size();i++){
			while(x>=0){
				if(S[i]==S[x])break;
				x=A[x];
			}
			x++;
			if(i!=S.size()-1){
				if(S[i+1] == S[x]) {
					A[i+1] = A[x];
					continue;
				}
			}
			A[i+1] = x;
		}
		
		
	}

	
	//文字列[0,pos]の接尾辞と接頭辞が何文字一致しているか
	int get_length(int pos){
		return A[pos+1];
	}
	
};

int main(){
	string S;
	int M;
	cin>>S>>M;
	
	int ans = 0;
	
	for(int i=0;i<M;i++){
		string c;
		cin>>c;
		KMP K((c + " " + S));
		for(int j=0;j<c.size()+S.size()+1;j++){
			if(K.get_length(j)==c.size())ans++;
		}
	}
	
	cout<<ans<<endl;
	
	
			
			
	
	
	return 0;
}
0