結果
問題 | No.430 文字列検索 |
ユーザー | f1b_maxbl00d |
提出日時 | 2020-01-30 02:53:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 892 ms / 2,000 ms |
コード長 | 2,954 bytes |
コンパイル時間 | 1,386 ms |
コンパイル使用メモリ | 135,952 KB |
実行使用メモリ | 8,124 KB |
最終ジャッジ日時 | 2024-08-15 16:25:35 |
合計ジャッジ時間 | 12,641 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 869 ms
8,012 KB |
testcase_01 | AC | 7 ms
7,028 KB |
testcase_02 | AC | 889 ms
8,124 KB |
testcase_03 | AC | 892 ms
8,056 KB |
testcase_04 | AC | 880 ms
7,876 KB |
testcase_05 | AC | 6 ms
7,168 KB |
testcase_06 | AC | 6 ms
7,040 KB |
testcase_07 | AC | 6 ms
7,040 KB |
testcase_08 | AC | 6 ms
7,016 KB |
testcase_09 | AC | 10 ms
8,084 KB |
testcase_10 | AC | 6 ms
7,164 KB |
testcase_11 | AC | 9 ms
7,296 KB |
testcase_12 | AC | 883 ms
8,028 KB |
testcase_13 | AC | 892 ms
8,044 KB |
testcase_14 | AC | 881 ms
7,860 KB |
testcase_15 | AC | 890 ms
7,996 KB |
testcase_16 | AC | 883 ms
7,876 KB |
testcase_17 | AC | 880 ms
8,064 KB |
testcase_18 | AC | 877 ms
7,896 KB |
ソースコード
#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] = 0; 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; }