BZOJ2754: [SCOI2012]喵星球上的点名(AC自动机)
2018-07-03 01:00:40来源:博客园 阅读 ()
Submit: 2816 Solved: 1246
[Submit][Status][Discuss]
Description
Input
Output
Sample Input
6 8 25 0 24 14 8 6 18 0 10 20 24 0
7 14 17 8 7 0 17 0 5 8 25 0 24 0
4 8 25 0 24
4 7 0 17 0
4 17 0 8 25
Sample Output
2
1
0
1 2
【提示】
事实上样例给出的数据如果翻译成地球上的语言可以这样来看
2 3
izayoi sakuya
orihara izaya
izay
hara
raiz
HINT
【数据范围】
对于30%的数据,保证:
1<=N,M<=1000,喵星人的名字总长不超过4000,点名串的总长不超过2000。
对于100%的数据,保证:
1<=N<=20000,1<=M<=50000,喵星人的名字总长和点名串的总长分别不超过100000,保证喵星人的字符串中作为字符存在的数不超过10000。
Source
这题貌似有$n$多种搞法啊。。
AC自动机+unordered_map?
后缀数组乱搞?
AC自动机+莫队/树状数组??
我只会第一个qwq。。。
正经一点的可以看这里https://blog.csdn.net/clover_hxy/article/details/52502544
暴力代码真难写
#include<cstdio> #include<cstring> #include<algorithm> #include<vector> #include<queue> #include<map> #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/hash_policy.hpp> using namespace __gnu_pbds; #define mit cc_hash_table<int, int>::iterator using namespace std; const int MAXN = 1e5 + 10, B = 26, mod = 10007; inline int read() { char c = getchar(); int x = 0, f = 1; while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();} while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar(); return x * f; } const int root = 0; int N, M; int fail[MAXN], tot = 0, val[MAXN]; cc_hash_table<int, int>ch[MAXN]; vector<int> mi[MAXN], sum[MAXN]; void insert(vector<int> v, int ID) { int len = v.size(); int now = root; for(int i = 0; i < len; i++) { int x = v[i]; if(!ch[now][x]) ch[now][x] = ++tot; now = ch[now][x]; } sum[now].push_back(ID); } void GetFail() { queue<int> q; for(mit i = ch[root].begin(); i != ch[root].end(); i++) q.push(i -> second); while(!q.empty()) { int p = q.front(); q.pop(); //if(p == 0) continue; for(mit i = ch[p].begin(); i != ch[p].end(); i++) { int x = i -> first, pos = i -> second, t = fail[p]; while(t && !ch[t][x]) t = fail[t]; if(ch[t][x]) fail[pos] = ch[t][x]; //printf("%d %d\n", pos, fail[pos]); q.push(pos); } } } int ans1[MAXN], ans2[MAXN], happen[MAXN]; void work(vector<int> v, int id) { int now = root; int len = v.size(); for(int i = 0; i < len; i++) { int x = v[i]; if(ch[now][x]) now = ch[now][x]; else { while(now && !ch[now][x]) now = fail[now]; if(ch[now][x]) now = ch[now][x]; } for(int cur = now; cur; cur = fail[cur]) for(int k = 0; k < sum[cur].size(); k++) { int add = sum[cur][k]; if(happen[add] != id) { ans1[add]++; happen[add] = id, ans2[id]++; } } } } main() { #ifdef WIN32 freopen("a.in", "r", stdin); freopen("b.out", "w", stdout); #endif N = read(); M = read(); for(int i = 1; i <= N; i++) { for(int j = 0; j <= 1; j++) { int num = read(); for(int k = 1; k <= num; k++) mi[i].push_back(read()); mi[i].push_back(-1); } } for(int i = 1; i <= M; i++) { vector<int> t; int n = read(); for(int j = 1; j <= n; j++) t.push_back(read()); insert(t, i); } GetFail(); for(int i = 1; i <= N; i++) work(mi[i], i); for(int i = 1; i <= M; i++) printf("%d\n", ans1[i]); for(int i = 1; i <= N; i++) printf("%d ", ans2[i]); }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 第八届蓝桥杯 承压计算 (代码+详解) 2018-06-17
- P1197 [JSOI2008]星球大战 2018-06-17
- P1063 能量项链 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash