結果
問題 | No.430 文字列検索 |
ユーザー | はまやんはまやん |
提出日時 | 2017-02-23 04:01:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,797 bytes |
コンパイル時間 | 1,935 ms |
コンパイル使用メモリ | 187,500 KB |
実行使用メモリ | 7,016 KB |
最終ジャッジ日時 | 2024-11-10 00:14:53 |
合計ジャッジ時間 | 4,378 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) const int NUMC = 26; class Trie { public: vector<vector<int> > V; int find(string s) { int cur = 0; for(char it : s) if ((cur = V[cur][it + 1]) == 0) return -1; return cur; } void create(vector<string> S) { // 0 is for backtrack V.clear(); V.push_back(vector<int>(NUMC + 1)); sort(S.begin(), S.end()); for(string it: S) { int cur = 0; for(char c: it) { if (V[cur][c + 1] == 0) V.push_back(vector<int>(NUMC + 1)), V[cur][c + 1] = V.size() - 1; cur = V[cur][c + 1]; } } } }; class ACmatch_num { public: Trie t; vector<int> acc; int ma; void create(vector<string> S) { int i; ma = S.size(); t.create(S); acc.clear(); acc.resize(t.V.size()); rep(i, 0, S.size()) acc[t.find(S[i])]++; queue<int> Q; rep(i, 0, NUMC) if (t.V[0][i + 1]) t.V[t.V[0][i + 1]][0] = 0, Q.push(t.V[0][i + 1]); while (!Q.empty()) { int k = Q.front(); Q.pop(); rep(i, 0, NUMC) if (t.V[k][i + 1]) { Q.push(t.V[k][i + 1]); int pre = t.V[k][0]; while (pre && t.V[pre][i + 1] == 0) pre = t.V[pre][0]; t.V[t.V[k][i + 1]][0] = t.V[pre][i + 1]; acc[t.V[k][i + 1]] += acc[t.V[pre][i + 1]]; } } } int match(string S) { int R = 0; int cur = 0; for(char it : S) { while (cur && t.V[cur][it + 1] == 0) cur = t.V[cur][0]; cur = t.V[cur][it + 1]; R += acc[cur]; } return R; } }; //----------------------------------------------------------------- string S; int M; vector<string> C; ACmatch_num ac; //----------------------------------------------------------------- int main() { cin >> S >> M; rep(i, 0, M) { string s; cin >> s; rep(j, 0, s.length()) s[j] -= 'A'; C.push_back(s); } ac.create(C); cout << ac.match(S) << endl; }