博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Codeforces163E】e-Government AC自动机fail树 + DFS序 + 树状数组
阅读量:4598 次
发布时间:2019-06-09

本文共 5060 字,大约阅读时间需要 16 分钟。

E. e-Government

time limit per test:
1 second
memory limit per test:
256 megabytes
input:
standard input
output:
standard output

The best programmers of Embezzland compete to develop a part of the project called "e-Government" — the system of automated statistic collecting and press analysis.

We know that any of the k citizens can become a member of the Embezzland government. The citizens' surnames are a1, a2, ..., ak. All surnames are different. Initially all k citizens from this list are members of the government. The system should support the following options:

  • Include citizen ai to the government.
  • Exclude citizen ai from the government.
  • Given a newspaper article text, calculate how politicized it is. To do this, for every active government member the system counts the number of times his surname occurs in the text as a substring. All occurrences are taken into consideration, including the intersecting ones. The degree of politicization of a text is defined as the sum of these values for all active government members.

Implement this system.

Input

The first line contains space-separated integers n and k (1 ≤ n, k ≤ 105) — the number of queries to the system and the number of potential government members.

Next k lines contain the surnames a1, a2, ..., ak, one per line. All surnames are pairwise different.

Next n lines contain queries to the system, one per line. Each query consists of a character that determines an operation and the operation argument, written consecutively without a space.

Operation "include in the government" corresponds to the character "+", operation "exclude" corresponds to "-". An argument of those operations is an integer between 1 and k — the index of the citizen involved in the operation. Any citizen can be included and excluded from the government an arbitrary number of times in any order. Including in the government a citizen who is already there or excluding the citizen who isn't there changes nothing.

The operation "calculate politicization" corresponds to character "?". Its argument is a text.

All strings — surnames and texts — are non-empty sequences of lowercase Latin letters. The total length of all surnames doesn't exceed106, the total length of all texts doesn't exceed 106.

Output

For any "calculate politicization" operation print on a separate line the degree of the politicization of the given text. Print nothing for other operations.

Examples

input
7 3 a aa ab ?aaab -2 ?aaab -3 ?aaab +2 ?aabbaa

output

6

4
3
6

Solution

fail树的经典运用。

先建出fail树,然后用树状数组维护DFS序即可。

Code

#include
#include
#include
#include
#include
#include
using namespace std;#define MAXN 1000100int K,N,loc[MAXN],visit[MAXN];struct EdgeNode{ int next,to;}edge[MAXN<<1];int head[MAXN],cnt=1;inline void AddEdge(int u,int v) {cnt++; edge[cnt].next=head[u]; head[u]=cnt; edge[cnt].to=v;}inline void InsertEdge(int u,int v) {AddEdge(u,v); AddEdge(v,u);}char S[MAXN];namespace FailTree{ int son[MAXN][27],end[MAXN],sz=1,fail[MAXN];#define id(str) str-'a'+1 inline int Insert(int x,char str[]) { int len=strlen(str+1),now=1; for (int i=1; i<=len; i++) if (son[now][id(str[i])]) now=son[now][id(str[i])]; else son[now][id(str[i])]=++sz,now=sz; end[now]=1; loc[x]=now; } queue
q; inline void Getfail() { q.push(1); while (!q.empty()) { int now=q.front(); q.pop(); for (int i=1; i<=26; i++) if (son[now][i]) { int fa=fail[now]; while (fa && !son[fa][i]) fa=fail[fa]; fail[son[now][i]]=fa? son[fa][i]:1; q.push(son[now][i]); } } for (int i=1; i<=sz; i++) InsertEdge(fail[i],i); }}using namespace FailTree;namespace Divide{ int pl[MAXN],pr[MAXN],dfn,tree[MAXN<<1]; inline void DFS(int now,int last) { pl[now]=++dfn; for (int i=head[now]; i; i=edge[i].next) if (edge[i].to!=last) DFS(edge[i].to,now); pr[now]=++dfn; } inline int lowbit(int x) { return x&-x;} inline void Modify(int pos,int D) { for (int i=pos; i<=dfn; i+=lowbit(i)) tree[i]+=D;} inline int Query(int pos) { int re=0; for (int i=pos; i; i-=lowbit(i)) re+=tree[i]; return re;} inline int Calc(char str[]) { int len=strlen(str+1),ans=0,now=1; for (int i=1; i<=len; i++) { while (now && !son[now][id(str[i])]) now=fail[now]; now=now? son[now][id(str[i])]:1; ans+=Query(pl[now]); } return ans; } inline void Change(int x,int D) { if (visit[x] && D>0) return; if (!visit[x] && D<0) return; visit[x]^=1; Modify(pl[loc[x]],D); Modify(pr[loc[x]],-D); }}using namespace Divide;int main(){ scanf("%d%d",&K,&N); for (int i=1; i<=N; i++) scanf("%s",S+1),Insert(i,S); Getfail(); DFS(1,0); for (int i=1; i<=N; i++) Modify(pl[loc[i]],1),Modify(pr[loc[i]],-1),visit[i]=1; while (K--) { char opt=getchar(); int x; while (opt!='+' && opt!='-' && opt!='?') opt=getchar(); switch (opt) { case '+' : scanf("%d",&x); Change(x,1); break; case '-' : scanf("%d",&x); Change(x,-1); break; case '?' : scanf("%s",S+1); printf("%d\n",Calc(S)); break; } } return 0;}

 

转载于:https://www.cnblogs.com/DaD3zZ-Beyonder/p/6146801.html

你可能感兴趣的文章
外部引用CSS中 link与@import的区别
查看>>
各种语言学习
查看>>
将博客搬至CSDN
查看>>
计算机硬盘大小转换(B,KB,MB,GB,TB,PB之间的大小转换)
查看>>
10.2计数与概率基础
查看>>
ssh无密码登陆
查看>>
使用django book2.0 时候,输入python manage.py sqlall books 报错解决办法
查看>>
Linux中docker的使用
查看>>
编译器选项
查看>>
VirtualBox虚拟机磁盘瘦身
查看>>
CSS的三种样式
查看>>
关于hadoop集群的简单性能测试——mapreduce性能,hive性能,并行计算分析(原创)...
查看>>
Asp.Net 4中使用路由时使用SiteMap
查看>>
linux之软连接 硬链接
查看>>
javascript中数组与字符串之间的转换以及字符串的替换
查看>>
使用pip安装离线包
查看>>
ORACLE 统计查看每一个表的行数
查看>>
【bzoj4281】[ONTAK2015]Związek Harcerstwa Bajtockiego 树上倍增+LCA
查看>>
Otto开发初探——微服务依赖管理新利器
查看>>
移动端开发:架构那点事!
查看>>