結果
問題 | No.430 文字列検索 |
ユーザー | sugim48 |
提出日時 | 2016-10-04 06:03:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 2,357 bytes |
コンパイル時間 | 1,426 ms |
コンパイル使用メモリ | 112,548 KB |
実行使用メモリ | 7,592 KB |
最終ジャッジ日時 | 2024-11-10 00:09:00 |
合計ジャッジ時間 | 1,804 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 12 ms
7,592 KB |
testcase_02 | AC | 6 ms
5,248 KB |
testcase_03 | AC | 6 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 11 ms
6,232 KB |
testcase_12 | AC | 11 ms
6,604 KB |
testcase_13 | AC | 12 ms
6,736 KB |
testcase_14 | AC | 9 ms
5,984 KB |
testcase_15 | AC | 8 ms
5,376 KB |
testcase_16 | AC | 8 ms
5,376 KB |
testcase_17 | AC | 8 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <cstdio> #include <functional> #include <iostream> #include <cfloat> #include <climits> #include <cstdlib> #include <cstring> #include <cmath> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> #include <random> #include <list> #include <numeric> using namespace std; typedef long double ld; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<int, ll> i_ll; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { int u, v; ll w; }; #define rep(i, N) for (int i = 0; i < (int)(N); i++) #define pb push_back int INF = INT_MAX / 10; ll MOD = 1000000007; ll _MOD = 1000000009; double EPS = 1e-10; struct aho_corasick { int N, M; vector<vector<int> > next, accepts, uss; void dfs(int i, string& s, int j, int u) { if (j == s.length()) { accepts[u].pb(i); return; } int k = s[j] - 'A' + 1; if (next[u][k] == -1) { next.pb(vector<int>(27, -1)); accepts.pb({}); if (j + 1 == uss.size()) uss.pb({}); uss[j + 1].pb(M); next[u][k] = M++; } dfs(i, s, j + 1, next[u][k]); } aho_corasick(vector<string> patterns) { N = patterns.size(); M = 1; next.pb(vector<int>(27, -1)); accepts.pb({}); uss.pb({0}); rep(i, N) dfs(i, patterns[i], 0, 0); for (vector<int> us: uss) for (int u: us) for (int k = 1; k <= 26; k++) { if (next[u][k] == -1) continue; int v; for (v = next[u][0]; v != -1 && next[v][k] == -1; v = next[v][0]); next[next[u][k]][0] = (v == -1 ? 0 : next[v][k]); } } vector<int> search(string s) { vector<int> freq(M); int u = 0; for (char c: s) { int k = c - 'A' + 1; for (; u != -1 && next[u][k] == -1; u = next[u][0]); u = (u == -1 ? 0 : next[u][k]); freq[u]++; } vector<int> ans(N); for (int j = uss.size() - 1; j > 0; j--) for (int u: uss[j]) { for (int i: accepts[u]) ans[i] = freq[u]; freq[next[u][0]] += freq[u]; } return ans; } }; int main() { string s; cin >> s; int N; cin >> N; vector<string> patterns(N); rep(i, N) cin >> patterns[i]; aho_corasick ac(patterns); vector<int> a = ac.search(s); cout << accumulate(a.begin(), a.end(), 0LL) << endl; }