HDU 2222 Keywords Search(AC自动机/模板题)
Keywords Search
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 63941 Accepted Submission(s): 21264
Description
In the modern time, Search engine came into the life of everybody like Google, Baidu, etc.
Wiskey also wants to bring this feature to his image retrieval system.
Every image have a long description, when users type some keywords to find the image, the system will match the keywords with description of image and show the image which the most keywords be matched.
To simplify the problem, giving you a description of image, and some keywords, you should tell me how many keywords will be match.
Input
First line will contain one integer means how many cases will follow by.
Each case will contain two integers N means the number of keywords and N keywords follow. (N <= 10000)
Each keyword will only contains characters 'a'-'z', and the length will be not longer than 50.
The last line is the description, and the length will be not longer than 1000000.
Output
Print how many keywords are contained in the description.
Sample Input
1 5 she he say shr her yasherhs
Sample Output
3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | #include<bits/stdc++.h> using namespace std; struct Trie{ int cnt; Trie* next[26]; Trie* behind; }; int main() { int T; scanf ( "%d" ,&T); while (T--) { int N; char str[60]; Trie* root = new Trie; root->cnt = -1; root->behind = NULL; for ( int i = 0;i < 26;i++) root->next[i] = NULL; scanf ( "%d" ,&N); while (N--) { scanf ( "%s" ,str); Trie* p = root; int i = 0; while (str[i]) { int j = str[i] - 'a' ; if (!p->next[j]) { Trie* q = new Trie; q->cnt = 0; q->behind = NULL; for ( int k = 0;k < 26;k++) q->next[k] = NULL; p->next[j] = q; } p = p->next[j]; i++; } p->cnt++; } queue<Trie*>que; root->behind = root; for ( int i = 0;i < 26;i++) { if (!root->next[i]) { root->next[i] = root; } else { root->next[i]->behind = root; que.push(root->next[i]); } } while (!que.empty()) { Trie* p = que.front(); Trie* q = p->behind; que.pop(); for ( int i = 0;i < 26;i++) { if (!p->next[i]) { p->next[i] = q->next[i]; } else { p->next[i]->behind = q->next[i]; que.push(p->next[i]); } } } char article[1000005]; Trie* p = root; scanf ( "%s" ,article); int res = 0; int i = 0; while (article[i]) { int j = article[i] - 'a' ; p = p->next[j]; for (Trie* tmp = p;tmp != root && tmp->cnt !=-1;tmp = tmp->behind) { res += tmp->cnt; tmp->cnt = -1; //计算完毕,置-1表示已经计算过 } i++; } printf ( "%d\n" ,res); } return 0; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | #include<bits/stdc++.h> using namespace std; const int N = 500005; struct AC_Automan{ int next[N][26]; int fail[N]; int cnt[N]; int root,tot; int newnode() { for ( int i = 0;i < 26;i++) next[tot][i] = -1; fail[tot] = -1; cnt[tot] = 0; return tot++; } void clear() { tot = 0; root = newnode(); } void insert( const string &s) { int p = root; for ( int i = 0,len = s.length();i < len;i++) { if (next[p][s[i]- 'a' ] == -1) next[p][s[i]- 'a' ] = newnode(); p = next[p][s[i]- 'a' ]; } cnt[p]++; } void build() { queue< int >Q; Q.push(root); while (!Q.empty()) { int p = Q.front();Q.pop(); for ( int i = 0;i < 26;i++) { if (~next[p][i]) { if (p == root) fail[next[p][i]] = root; else fail[next[p][i]] = next[fail[p]][i]; Q.push(next[p][i]); } else { if (p == root) next[p][i] = root; else next[p][i] = next[fail[p]][i]; } } } } int solve( const string &t) { int p = root,ans = 0; for ( int i = 0,len = t.length();i < len;i++) { p = next[p][t[i]- 'a' ]; for ( int tmp = p;tmp != root && cnt[tmp] != -1;tmp = fail[tmp]) { ans += cnt[tmp]; cnt[tmp] = -1; } } return ans; } }ac; int main() { cin.sync_with_stdio(0); int T; cin >> T; while (T--) { ac.clear(); int n; cin >> n; for ( int i = 0;i < n;i++) { string s; cin >> s; ac.insert(s); } ac.build(); string t; cin >> t; cout << ac.solve(t) << endl; } return 0; } |
┆ 凉 ┆ 暖 ┆ 降 ┆ 等 ┆ 幸 ┆ 我 ┆ 我 ┆ 里 ┆ 将 ┆ ┆ 可 ┆ 有 ┆ 谦 ┆ 戮 ┆ 那 ┆ ┆ 大 ┆ ┆ 始 ┆ 然 ┆
┆ 薄 ┆ 一 ┆ 临 ┆ 你 ┆ 的 ┆ 还 ┆ 没 ┆ ┆ 来 ┆ ┆ 是 ┆ 来 ┆ 逊 ┆ 没 ┆ 些 ┆ ┆ 雁 ┆ ┆ 终 ┆ 而 ┆
┆ ┆ 暖 ┆ ┆ 如 ┆ 地 ┆ 站 ┆ 有 ┆ ┆ 也 ┆ ┆ 我 ┆ ┆ 的 ┆ 有 ┆ 精 ┆ ┆ 也 ┆ ┆ 没 ┆ 你 ┆
┆ ┆ 这 ┆ ┆ 试 ┆ 方 ┆ 在 ┆ 逃 ┆ ┆ 会 ┆ ┆ 在 ┆ ┆ 清 ┆ 来 ┆ 准 ┆ ┆ 没 ┆ ┆ 有 ┆ 没 ┆
┆ ┆ 生 ┆ ┆ 探 ┆ ┆ 最 ┆ 避 ┆ ┆ 在 ┆ ┆ 这 ┆ ┆ 晨 ┆ ┆ 的 ┆ ┆ 有 ┆ ┆ 来 ┆ 有 ┆
┆ ┆ 之 ┆ ┆ 般 ┆ ┆ 不 ┆ ┆ ┆ 这 ┆ ┆ 里 ┆ ┆ 没 ┆ ┆ 杀 ┆ ┆ 来 ┆ ┆ ┆ 来 ┆
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)