結果
問題 | No.2761 Substitute and Search |
ユーザー | Tatsu_mr |
提出日時 | 2024-05-20 22:24:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,281 ms / 4,000 ms |
コード長 | 2,196 bytes |
コンパイル時間 | 4,740 ms |
コンパイル使用メモリ | 276,560 KB |
実行使用メモリ | 71,296 KB |
最終ジャッジ日時 | 2024-05-20 22:24:34 |
合計ジャッジ時間 | 15,772 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 866 ms
71,296 KB |
testcase_05 | AC | 1,281 ms
71,168 KB |
testcase_06 | AC | 371 ms
71,168 KB |
testcase_07 | AC | 986 ms
71,296 KB |
testcase_08 | AC | 369 ms
71,296 KB |
testcase_09 | AC | 1,032 ms
71,296 KB |
testcase_10 | AC | 343 ms
71,296 KB |
testcase_11 | AC | 1,017 ms
71,168 KB |
testcase_12 | AC | 685 ms
71,296 KB |
testcase_13 | AC | 706 ms
71,296 KB |
testcase_14 | AC | 688 ms
71,296 KB |
testcase_15 | AC | 726 ms
71,168 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using m1 = modint998244353; using m2 = modint1000000007; using P = pair<m1, m2>; unsigned int xorshift() { static unsigned int x = 123456789, y = 362436069, z = 521288629, w = 88675123; unsigned int t = (x ^ (x << 11)); x = y; y = z; z = w; return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8))); } P op(P a, P b) { return {a.first + b.first, a.second + b.second}; } P e() { return {0, 0}; } int main() { int n, l, q; cin >> n >> l >> q; vector<string> s(n); for (int i = 0; i < n; i++) { cin >> s[i]; } m1 b1 = xorshift(); m2 b2 = xorshift(); vector<m1> p1(l, 1); vector<m2> p2(l, 1); for (int i = 1; i < l; i++) { p1[i] = p1[i - 1] * b1; p2[i] = p2[i - 1] * b2; } vector<segtree<P, op, e>> seg(n, segtree<P, op, e>(l)); for (int i = 0; i < n; i++) { for (int j = 0; j < l; j++) { int x = s[i][j] - 'a' + 1; m1 h1 = p1[j] * x; m2 h2 = p2[j] * x; seg[i].set(j, {h1, h2}); } } while (q--) { int t; cin >> t; if (t == 1) { int k; char c, d; cin >> k >> c >> d; k--; int x = d - 'a' + 1; for (int i = 0; i < n; i++) { if (s[i][k] == c) { m1 h1 = p1[k] * x; m2 h2 = p2[k] * x; seg[i].set(k, {h1, h2}); s[i][k] = d; } } } else { string pre; cin >> pre; int len = pre.size(); m1 h1 = 0; m2 h2 = 0; for (int i = 0; i < len; i++) { int x = pre[i] - 'a' + 1; h1 += p1[i] * x; h2 += p2[i] * x; } int ans = 0; for (int i = 0; i < n; i++) { P cur = seg[i].prod(0, len); if (cur.first == h1 && cur.second == h2) { ans++; } } cout << ans << endl; } } }