結果
問題 | No.2761 Substitute and Search |
ユーザー | eve__fuyuki |
提出日時 | 2024-05-17 22:45:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 619 ms / 4,000 ms |
コード長 | 1,693 bytes |
コンパイル時間 | 2,161 ms |
コンパイル使用メモリ | 214,588 KB |
実行使用メモリ | 382,080 KB |
最終ジャッジ日時 | 2024-05-17 22:45:59 |
合計ジャッジ時間 | 7,412 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 192 ms
7,808 KB |
testcase_05 | AC | 37 ms
7,552 KB |
testcase_06 | AC | 454 ms
381,696 KB |
testcase_07 | AC | 619 ms
382,080 KB |
testcase_08 | AC | 46 ms
16,896 KB |
testcase_09 | AC | 126 ms
17,024 KB |
testcase_10 | AC | 443 ms
381,696 KB |
testcase_11 | AC | 479 ms
381,824 KB |
testcase_12 | AC | 461 ms
381,952 KB |
testcase_13 | AC | 465 ms
381,824 KB |
testcase_14 | AC | 55 ms
17,024 KB |
testcase_15 | AC | 475 ms
381,696 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } struct TrieNode { int count; map<char, TrieNode*> children; TrieNode() : count(0) {} }; void insert(TrieNode* root, const string& word) { TrieNode* current = root; for (char c : word) { if (current->children.find(c) == current->children.end()) { current->children[c] = new TrieNode(); } current->children[c]->count += 1; current = current->children[c]; } } vector<vector<char>> char_cur(3000, vector<char>(26)); int calc(const string& t, TrieNode* root, int i) { if (i == t.size()) { return root->count; } char c = t[i]; int res = 0; for (auto [d, child] : root->children) { if (char_cur[i][d - 'a'] == c) { res += calc(t, child, i + 1); } } return res; } int main() { fast_io(); int n, l, q; cin >> n >> l >> q; vector<string> s(n); for (int i = 0; i < n; ++i) { cin >> s[i]; } TrieNode* tree = new TrieNode(); for (const string& t : s) { insert(tree, t); } for (int i = 0; i < l; ++i) { for (int j = 0; j < 26; ++j) { char_cur[i][j] = 'a' + j; } } for (int i = 0; i < q; ++i) { int com; cin >> com; if (com == 1) { int k; char c, d; cin >> k >> c >> d; --k; replace(char_cur[k].begin(), char_cur[k].end(), c, d); } else { string t; cin >> t; cout << calc(t, tree, 0) << "\n"; } } return 0; }