結果
問題 | No.430 文字列検索 |
ユーザー | milanis48663220 |
提出日時 | 2022-01-10 01:21:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 19 ms / 2,000 ms |
コード長 | 2,814 bytes |
コンパイル時間 | 1,671 ms |
コンパイル使用メモリ | 108,028 KB |
実行使用メモリ | 7,760 KB |
最終ジャッジ日時 | 2024-11-10 00:58:33 |
合計ジャッジ時間 | 2,178 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 19 ms
7,760 KB |
testcase_02 | AC | 7 ms
5,248 KB |
testcase_03 | AC | 6 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 10 ms
5,340 KB |
testcase_12 | AC | 11 ms
5,584 KB |
testcase_13 | AC | 11 ms
5,584 KB |
testcase_14 | AC | 9 ms
5,248 KB |
testcase_15 | AC | 8 ms
5,248 KB |
testcase_16 | AC | 8 ms
5,248 KB |
testcase_17 | AC | 8 ms
5,248 KB |
ソースコード
#include <iostream> #include <vector> #include <queue> #include <set> #include <numeric> using namespace std; class AhoCorasick { struct Edge{ int to; char c; Edge(int to, char c): to(to), c(c) { } }; public: vector<string> key_words; int n_nodes; AhoCorasick(vector<string> key_words): key_words(key_words) { n_nodes = 1; output = {{}}; tree = {{}}; for(int i = 0; i < key_words.size(); i++) { add(i); } // build failure and output failure.resize(n_nodes); failure[0] = 0; queue<int> que; for(Edge e: tree[0]){ que.push(e.to); failure[e.to] = 0; } while(!que.empty()){ int v = que.front(); que.pop(); for(Edge e: tree[v]){ que.push(e.to); int u = failure[v]; while(find_node(u, e.c) == -1 && u != 0) { u = failure[u]; } failure[e.to] = find_node(u, e.c); if(u == 0 && failure[e.to] == -1){ failure[e.to] = 0; } for(int i: output[failure[e.to]]) output[e.to].insert(i); } } } vector<int> search_text(string text){ int cur = 0; vector<int> ans(key_words.size()); for(char c: text){ while(true){ int nx = find_node(cur, c); if(cur == 0 && nx == -1){ nx = 0; } if(nx != -1) { cur = nx; break; } cur = failure[cur]; } for(int i: output[cur]) ans[i]++; } return ans; } private: vector<vector<Edge>> tree; vector<int> failure; vector<set<int>> output; void add(int idx){ int cur = 0; for(char c: key_words[idx]){ int nx = find_node(cur, c); if(nx == -1){ nx = add_node(cur, c); } cur = nx; } output[cur].insert(idx); } int find_node(int i, char c){ for(Edge e: tree[i]){ if(e.c == c) return e.to; } return -1; } int add_node(int from, char c){ int to = n_nodes; tree[from].push_back(Edge(to, c)); n_nodes++; output.push_back({}); tree.push_back({}); return to; } }; int main(){ string text; cin >> text; int m; cin >> m; vector<string> key_words(m); for(int i = 0; i < m; i++) cin >> key_words[i]; auto ac = AhoCorasick(key_words); auto ans = ac.search_text(text); cout << accumulate(ans.begin(), ans.end(), 0) << endl; }