結果
問題 | No.430 文字列検索 |
ユーザー | yuppe19 😺 |
提出日時 | 2019-11-22 11:39:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 263 ms / 2,000 ms |
コード長 | 1,908 bytes |
コンパイル時間 | 736 ms |
コンパイル使用メモリ | 88,740 KB |
実行使用メモリ | 27,008 KB |
最終ジャッジ日時 | 2024-11-10 00:38:33 |
合計ジャッジ時間 | 2,203 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 263 ms
27,008 KB |
testcase_02 | AC | 7 ms
5,248 KB |
testcase_03 | AC | 7 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 254 ms
26,752 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 14 ms
5,760 KB |
testcase_11 | AC | 74 ms
7,936 KB |
testcase_12 | AC | 73 ms
8,064 KB |
testcase_13 | AC | 73 ms
8,064 KB |
testcase_14 | AC | 59 ms
6,528 KB |
testcase_15 | AC | 43 ms
5,632 KB |
testcase_16 | AC | 11 ms
5,248 KB |
testcase_17 | AC | 8 ms
5,248 KB |
ソースコード
#include <iostream> #include <map> #include <vector> using namespace std; using u64 = uint64_t; class rolling_hash { static constexpr u64 M = (1ULL << 51) * 4011 + 1, M2 = M - 2, R2 = static_cast<u64>(-__uint128_t(M) % M); static constexpr u64 MR(__uint128_t t) { u64 r = u64((__uint128_t(u64(t) * M2) * M + t) >> 64); return r < M ? r : r - M; } static constexpr u64 init(__uint128_t x) { return MR(x * R2); } static constexpr u64 mod_mul(__uint128_t x, u64 y) { return MR(x * y); } string s; size_t n; static constexpr u64 b61 = 1734700174076058667UL; vector<u64> B, H; public: rolling_hash() {} explicit rolling_hash(const string &_s); u64 calc_hash(size_t l, size_t r) const; // [l, r]. つまり l も r も含む。1-indexed. u64 calc_hash2(size_t l, size_t len) const; // l から len 文字。1-indexed. }; inline rolling_hash::rolling_hash(const string &_s) : s(_s), n(s.size()) { B.resize(n+1); H.resize(n+1); B[0] = init(1); for(size_t i=0; i<n; ++i) { B[i+1] = mod_mul(B[i], b61); H[i+1] = mod_mul(H[i], b61) + s[i]; if(H[i+1] >= M) { H[i+1] -= M; } } } inline u64 rolling_hash::calc_hash(size_t l, size_t r) const { return calc_hash2(l, r-l+1); } inline u64 rolling_hash::calc_hash2(size_t l, size_t len) const { u64 x = H[l+len-1], yz = mod_mul(B[len], H[l-1]); return x < yz ? M - yz + x : x - yz; } int main(void) { cin.tie(nullptr); ios::sync_with_stdio(false); string s; int m; cin >> s >> m; rolling_hash rh(s); map<u64, int> mp; for(size_t i=1, n=s.size(); i<=n; ++i) { for(size_t len=1; len<=10 && i+len<=n+1; ++len) { ++mp[rh.calc_hash2(i, len)]; } } int res = 0; for(int i=0; i<m; ++i) { string ci; cin >> ci; rolling_hash rh2(ci); res += mp[rh2.calc_hash(1, ci.size())]; } cout << res << '\n'; return 0; }