結果
問題 | No.430 文字列検索 |
ユーザー | 👑 rin204 |
提出日時 | 2022-12-25 14:41:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 3,315 bytes |
コンパイル時間 | 2,513 ms |
コンパイル使用メモリ | 232,304 KB |
実行使用メモリ | 9,408 KB |
最終ジャッジ日時 | 2024-11-10 01:02:59 |
合計ジャッジ時間 | 3,134 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 25 ms
9,408 KB |
testcase_02 | AC | 8 ms
7,040 KB |
testcase_03 | AC | 7 ms
6,272 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 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 | 13 ms
6,604 KB |
testcase_12 | AC | 12 ms
6,976 KB |
testcase_13 | AC | 12 ms
6,848 KB |
testcase_14 | AC | 10 ms
6,492 KB |
testcase_15 | AC | 9 ms
6,424 KB |
testcase_16 | AC | 10 ms
7,196 KB |
testcase_17 | AC | 9 ms
7,324 KB |
ソースコード
#line 1 "A.cpp" // #pragma GCC target("avx2") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> using namespace std; using ll = long long; #define endl "\n" void print(){ cout << '\n'; } template <class Head, class... Tail> void print(Head &&head, Tail &&... tail) { cout << head; if (sizeof...(Tail)) cout << ' '; print(forward<Tail>(tail)...); } template<typename T> void print(vector<T> &A){ int n = A.size(); for(int i = 0; i < n; i++){ cout << A[i]; if(i == n - 1) cout << '\n'; else cout << ' '; } } template<typename T, typename S> void prisep(vector<T> &A, S sep){ int n = A.size(); for(int i = 0; i < n; i++){ cout << A[i]; if(i == n - 1) cout << '\n'; else cout << sep; } } template<typename T> void print(vector<vector<T>> &A){ for(auto &row: A) print(row); } #line 3 "Library/C++/string/AhoCorasick.hpp" using namespace std; struct AhoCorasick{ vector<string> words; vector<map<char, int>> children; vector<vector<int>> match; vector<int> failure; AhoCorasick(){} void registe(string word){ words.push_back(word); } void build(){ children.assign(1, {}); match.assign(1, {}); for(int i = 0; i < words.size(); i++){ _register(i, words[i]); } failure.resize(children.size()); _create_failure(); } void _register(int i, string &word){ int k = 0; for(auto s:word){ if(children[k].count(s)) k = children[k][s]; else{ int le = children.size(); children[k][s] = le; children.push_back({}); match.push_back({}); k = le; } } match[k].push_back(i); } void _create_failure(){ queue<int> que; for(auto tmp:children[0]) que.push(tmp.second); while(!que.empty()){ int k = que.front(); int b = failure[k]; que.pop(); for(auto tmp:children[k]){ int j = tmp.second; failure[j] = _next(b, tmp.first); match[j].insert(match[j].end(), match[failure[j]].begin(), match[failure[j]].end()); que.push(j); } } } int _next(int k, char s){ while(1){ if(children[k].count(s)) return children[k][s]; else if(k == 0) return 0; k = failure[k]; } } vector<vector<int>> search(string text){ int k = 0; int le = text.size(); vector<vector<int>> matched(le, vector<int>()); for(int i = 0; i < le; i++){ k = _next(k, text[i]); for(auto m:match[k]){ matched[i - words[m].size() + 1].push_back(m); } } return matched; } }; #line 46 "A.cpp" void solve(){ string S; int n; cin >> S >> n; AhoCorasick ac; for(int i = 0; i < n; i++){ string T; cin >> T; ac.registe(T); } ac.build(); auto match = ac.search(S); int ls = S.size(); int ans = 0; for(int i = 0; i < match.size(); i++){ ans += match[i].size(); } print(ans); } int main(){ cin.tie(0)->sync_with_stdio(0); int t; t = 1; // cin >> t; while(t--) solve(); return 0; }