結果
問題 | No.430 文字列検索 |
ユーザー | kitakitalily |
提出日時 | 2022-10-13 21:52:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,640 ms / 2,000 ms |
コード長 | 2,512 bytes |
コンパイル時間 | 2,774 ms |
コンパイル使用メモリ | 163,816 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-10 01:02:37 |
合計ジャッジ時間 | 18,580 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1,602 ms
5,248 KB |
testcase_02 | AC | 1,603 ms
5,248 KB |
testcase_03 | AC | 1,601 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 8 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 5 ms
5,248 KB |
testcase_11 | AC | 1,622 ms
5,248 KB |
testcase_12 | AC | 1,640 ms
5,248 KB |
testcase_13 | AC | 1,601 ms
5,248 KB |
testcase_14 | AC | 1,600 ms
5,248 KB |
testcase_15 | AC | 1,604 ms
5,248 KB |
testcase_16 | AC | 1,608 ms
5,248 KB |
testcase_17 | AC | 1,617 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct RollingHash { static const uint64_t mod = (1ull << 61ull) - 1; using uint128_t = __uint128_t; vector<uint64_t> power; const uint64_t base; static inline uint64_t add(uint64_t a, uint64_t b) { if ((a += b) >= mod) a -= mod; return a; } static inline uint64_t mul(uint64_t a, uint64_t b) { uint128_t c = (uint128_t)a * b; return add(c >> 61, c & mod); } static inline uint64_t generate_base() { mt19937_64 mt(chrono::steady_clock::now().time_since_epoch().count()); uniform_int_distribution<uint64_t> rand(1, RollingHash::mod - 1); return rand(mt); } inline void expand(size_t sz) { if (power.size() < sz + 1) { int pre_sz = (int)power.size(); power.resize(sz + 1); for (int i = pre_sz - 1; i < sz; i++) { power[i + 1] = mul(power[i], base); } } } explicit RollingHash(uint64_t base = generate_base()) : base(base), power{1} {} vector<uint64_t> build(const string &s) const { int sz = s.size(); vector<uint64_t> hashed(sz + 1); for (int i = 0; i < sz; i++) { hashed[i + 1] = add(mul(hashed[i], base), s[i]); } return hashed; } template <typename T> vector<uint64_t> build(const vector<T> &s) const { int sz = s.size(); vector<uint64_t> hashed(sz + 1); for (int i = 0; i < sz; i++) { hashed[i + 1] = add(mul(hashed[i], base), s[i]); } return hashed; } uint64_t query(const vector<uint64_t> &s, int l, int r) { expand(r - l); return add(s[r], mod - mul(s[l], power[r - l])); } uint64_t combine(uint64_t h1, uint64_t h2, size_t h2len) { expand(h2len); return add(mul(h1, power[h2len]), h2); } int lcp(const vector<uint64_t> &a, int l1, int r1, const vector<uint64_t> &b, int l2, int r2) { int len = min(r1 - l1, r2 - l2); int low = 0, high = len + 1; while (high - low > 1) { int mid = (low + high) / 2; if (query(a, l1, l1 + mid) == query(b, l2, l2 + mid)) low = mid; else high = mid; } return low; } }; int main() { string s; cin >> s; RollingHash rh; auto rh1 = rh.build(s); int m; cin >> m; int ans = 0; for (int i = 0; i < m; i++) { string c; cin >> c; auto rh2 = rh.build(c); for (int j = 0; j + c.size() <= s.size(); j++) { if (rh.query(rh1, j, j + c.size()) == rh.query(rh2, 0, c.size())) { ans++; } } } cout << ans << endl; }