結果
問題 | No.430 文字列検索 |
ユーザー | beet |
提出日時 | 2021-01-22 18:34:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,562 bytes |
コンパイル時間 | 2,077 ms |
コンパイル使用メモリ | 217,156 KB |
実行使用メモリ | 8,164 KB |
最終ジャッジ日時 | 2024-11-10 00:52:55 |
合計ジャッジ時間 | 3,290 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 11 ms
8,164 KB |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | RE | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | RE | - |
testcase_11 | AC | 8 ms
5,764 KB |
testcase_12 | AC | 9 ms
6,240 KB |
testcase_13 | AC | 8 ms
6,244 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 6 ms
5,924 KB |
testcase_17 | AC | 6 ms
5,796 KB |
ソースコード
// verification-helper: PROBLEM https://yukicoder.me/problems/1013 #include <bits/stdc++.h> using namespace std; #define call_from_test template<typename T=int> vector<T> read(size_t n){ vector<T> ts(n); for(size_t i=0;i<n;i++) cin>>ts[i]; return ts; } template<size_t X> struct Trie{ struct Node{ array<int, X> nxt; vector<int> idxs; int idx; Node():idx(-1){fill(nxt.begin(),nxt.end(),-1);} }; using F = function<int(char)>; vector<Node> vs; F conv; Trie(F conv):conv(conv){vs.emplace_back();} Trie(char start):Trie([=](char a){return a-start;}){} inline int &next(int i,int j){ return vs[i].nxt[j]; } void add(const string &s,int x){ int pos=0; for(char c:s){ int k=conv(c); if(~next(pos,k)){ pos=next(pos,k); continue; } int npos=vs.size(); next(pos,k)=npos; vs.emplace_back(); pos=npos; } vs[pos].idx=x; vs[pos].idxs.emplace_back(x); } int find(const string &s){ int pos=0; for(char c:s){ int k=conv(c); if(next(pos,k)<0) return -1; pos=next(pos,k); } return pos; } int move(int pos,char c){ assert(pos<(int)vs.size()); return pos<0?-1:next(pos,conv(c)); } int size(){return vs.size();} int idx(int pos){ return pos<0?-1:vs[pos].idx; } vector<int> idxs(int pos){ return pos<0?vector<int>():vs[pos].idxs; } }; template<size_t X, bool heavy> struct AhoCorasick : Trie<X+1>{ using super = Trie<X+1>; using super::super, super::next, super::size; using super::vs, super::conv; vector<int> cnt,order; // O(\sigma \sum |T_i|) void build(){ int n=vs.size(); cnt.resize(n); for(int i=0;i<n;i++){ if(heavy) sort(vs[i].idxs.begin(),vs[i].idxs.end()); cnt[i]=vs[i].idxs.size(); } queue<int> que; for(int i=0;i<(int)X;i++){ if(~next(0,i)){ next(next(0,i),X)=0; que.emplace(next(0,i)); }else{ next(0,i)=0; } } while(!que.empty()){ order.emplace_back(que.front()); auto &x=vs[que.front()]; int fail=x.nxt[X]; cnt[que.front()]+=cnt[fail]; que.pop(); for(int i=0;i<(int)X;i++){ int &nx=x.nxt[i]; if(nx<0){ nx=next(fail,i); continue; } que.emplace(nx); next(nx,X)=next(fail,i); if(heavy){ auto &idx=vs[nx].idxs; auto &idy=vs[next(fail,i)].idxs; vector<int> idz; set_union(idx.begin(),idx.end(), idy.begin(),idy.end(), back_inserter(idz)); idx=idz; } } } } int count(int pos){ return cnt[pos]; } // O(|S|) long long match(string s){ long long res=0; int pos=0; for(auto &c:s){ pos=next(pos,conv(c)); res+=count(pos); } return res; } // O(|S| + \sum |T_i|) vector<int> frequency(string s){ vector<int> res(size(),0); int pos=0; for(auto &c:s){ pos=next(pos,conv(c)); res[pos]++; } for(int i=size()-1;i;i--) res[vs[order[i]].nxt[X]]+=res[order[i]]; return res; } }; #undef call_from_test signed main(){ cin.tie(0); ios::sync_with_stdio(0); AhoCorasick<26, false> aho('A'); string s; cin>>s; int m; cin>>m; auto cs=read<string>(m); for(auto c:cs) aho.add(c,0); aho.build(); cout<<aho.match(s)<<endl; auto res=aho.frequency(s); long long cnt=0; for(auto c:cs) cnt+=res[aho.find(c)]; assert(cnt==aho.match(s)); return 0; }