結果
問題 | No.1005 BOT対策 |
ユーザー | kyo1 |
提出日時 | 2020-07-19 14:53:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,341 bytes |
コンパイル時間 | 1,894 ms |
コンパイル使用メモリ | 204,104 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 15:37:10 |
合計ジャッジ時間 | 2,929 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; class Random { private: static inline std::mt19937 mt{std::random_device()()}; public: template <typename T> static T random(T hi) { std::uniform_int_distribution<T> uid(0, hi - 1); return uid(mt); } template <typename T> static T random(T lo, T hi) { std::uniform_int_distribution<T> uid(lo, hi - 1); return uid(mt); } }; class RollingHash { private: const uint64_t mod = (UINT64_C(1) << 61) - 1; static inline uint64_t base = Random::random(UINT64_C(10007), UINT64_C(1) << 28); std::vector<uint64_t> hashes, pows; uint64_t add(uint64_t a, uint64_t b) const { a += b; if (a >= mod) a -= mod; return a; } uint64_t sub(uint64_t a, uint64_t b) const { if (a < b) a += mod; a -= b; return a; } uint64_t mul(uint64_t a, uint64_t b) const { uint64_t ah = a >> 31, al = a & ((UINT64_C(1) << 31) - 1), bh = b >> 31, bl = b & ((UINT64_C(1) << 31) - 1), m = ah * bl + al * bh, v = (ah * bh << 1) + (m >> 30) + ((m & ((UINT64_C(1) << 30) - 1)) << 31) + al * bl; v = (v & ((UINT64_C(1) << 61) - 1)) + (v >> 61); return v; } public: template <typename T> RollingHash(const T &S) : hashes(S.size() + 1, 0), pows(S.size() + 1, 0) { pows[0] = 1; for (size_t i = 0; i < S.size(); i++) { pows[i + 1] = mul(pows[i], base); hashes[i + 1] = add(mul(hashes[i], base), S[i]); } } template <typename T> RollingHash(const T &S, const uint64_t base) : hashes(S.size() + 1, 0), pows(S.size() + 1, 0) { pows[0] = 1; for (size_t i = 0; i < S.size(); i++) { pows[i + 1] = mul(pows[i], base); hashes[i + 1] = add(mul(hashes[i], base), S[i]); } } // S[l, r) uint64_t operator()(int l, int r) const { return sub(hashes[r], mul(hashes[l], pows[r - l])); } }; int main() { ios::sync_with_stdio(false); cin.tie(0); string S, T; cin >> S >> T; if ((int)T.size() == 1 && S.find(T) != string::npos) { cout << -1 << '\n'; return 0; } RollingHash rhs(S), rht(T); int res = 0; for (int i = 0; i < (int)S.size(); i++) { if (i + (int)T.size() < (int)S.size() + 1 && rhs(i, i + (int)T.size()) == rht(0, (int)T.size())) { i += (int)T.size() - 1; res++; } } cout << res << '\n'; return 0; }