結果

問題 No.430 文字列検索
ユーザー f1b_maxbl00df1b_maxbl00d
提出日時 2020-01-30 02:33:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,958 bytes
コンパイル時間 1,350 ms
コンパイル使用メモリ 134,284 KB
実行使用メモリ 8,196 KB
最終ジャッジ日時 2023-10-14 08:05:49
合計ジャッジ時間 12,080 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,900 KB
testcase_01 AC 958 ms
7,972 KB
testcase_02 AC 964 ms
7,680 KB
testcase_03 AC 974 ms
7,680 KB
testcase_04 WA -
testcase_05 AC 6 ms
7,100 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 11 ms
7,760 KB
testcase_09 AC 6 ms
6,888 KB
testcase_10 AC 8 ms
6,912 KB
testcase_11 AC 971 ms
8,048 KB
testcase_12 AC 964 ms
8,036 KB
testcase_13 AC 960 ms
7,688 KB
testcase_14 AC 973 ms
7,680 KB
testcase_15 AC 984 ms
7,696 KB
testcase_16 AC 962 ms
7,680 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <limits.h>
#include <algorithm>
#include <string>
#include <math.h>
#include <limits.h>
#include <queue>
#include <map>
#include <set>
#include <iomanip>
#include <bitset>
#include <cassert>
#include <random>
#include <functional>
#include <stack>
#include <iomanip>
#include <cassert>
//#include <boost/multiprecision/cpp_int.hpp>
#include <complex>
#include <cstdio>
#include <list>
#include <bitset>

//< in.txt > out.txt
using namespace std;
//std::ios::sync_with_stdio(false);
//std::cin.tie(0);
const long long MOD = 1e9 + 7;
typedef long long ll;
typedef long long LL;
typedef long double ld;
typedef pair<ll, ll> pll;
typedef pair<ld, ll> pdl;
typedef pair<ld, ld> pdd;
typedef vector<ll> VLL;
typedef vector<VLL> VVLL;
typedef unsigned long long ULL;
//typedef boost::multiprecision::cpp_int bigint;

typedef unsigned long long HASH;

class RollingHash {
public:
	static const ULL HMOD = (1ULL << 61) - 1;
	static const ULL MASK30 = (1ULL << 30) - 1;
	static const ULL MASK31 = (1ULL << 31) - 1;
	static ULL base;
	static const ULL POS = HMOD * ((1ULL<<3)-1);
	static vector<ULL> powmemo;
	vector<HASH> hash;   //部分列[0,n)のハッシュを持つ
	RollingHash(vector<LL>& S) {
		if (base == 0) {
			random_device rnd;
			mt19937 mt(rnd());
			uniform_int_distribution<ULL> rand(129, HMOD - 1);
			RollingHash::base = rand(mt);
			powmemo.resize(500000, 1);
			for (LL n = 1; n < 500000; n++) {
				powmemo[n] = mod(Mul(powmemo[n - 1], base));
			}
		}
		hash.resize(S.size() + 1);
		hash[0] = POS;
		for (ll n = 1; n <= S.size(); n++) {
			hash[n] = mod(Mul(hash[n - 1], base) + S[n-1]);
		}
	}
	//部分列[a,b)のハッシュ
	HASH get(LL a, LL b) {
		return mod(hash[b] + POS - Mul(hash[a], powmemo[b - a]));
	}
	//部分列配列への保存なしに変換
	HASH conv(vector<LL>& S) {
		HASH ans = 0;
		for (ll n = 0; n < S.size(); n++) {
			ans = mod(Mul(ans, base) + S[n]);
		}
		return ans;
	}
	static HASH Mul(HASH a, HASH b) {
		HASH au = a >> 31;
		HASH ad = a & MASK31;
		HASH bu = b >> 31;
		HASH bd = b & MASK31;
		HASH midd = au * bd + ad * bu;
		HASH midu = midd >> 30;
		midd = midd & MASK30;
		return ((au * bu) << 1) + ad * bd + (midd << 31) + midu;
	}
	static HASH mod(HASH val) {
		val = (val & HMOD) + (val >> 61);
		if (val >= HMOD)val -= HMOD;
		return val;
	}
};
ULL RollingHash::base = 0;
vector<ULL> RollingHash::powmemo = vector<ULL>();

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(0);
	string S;
	cin >> S;
	ll M;
	ll ans = 0;
	vector<LL> VS(S.size());
	for (ll n = 0; n < S.size(); n++)VS[n] = S[n] - 'A';
	RollingHash rh(VS);
	cin >> M;
	for (ll m = 0; m < M; m++) {
		string T;
		cin >> T;
		vector<LL> VT(T.size());
		for (ll n = 0; n < T.size(); n++) VT[n] = T[n] - 'A';
		HASH th = rh.conv(VT);
		for (ll n = 0; n + T.size() <= S.size(); n++) {
			HASH h = rh.get(n, n + T.size());
			if (th == h)ans++;
		}
	}
	cout << ans << "\n";
	return 0;
}
0