[51nod Round15 E ]Danganronpa
AC自动机,树上莫队,树状数组。。
比赛的时候完全看不出来...赛后去膜了一波网上题解才明白= =
离线,先把AC自动机建出来,把fail边反向建出fail树。
发射言弹,就是将言弹结束节点的fail子树内点权+1;
查询证言受的伤害,就是查询证言的每个前缀的结束节点的点权和。
前缀的结束节点的点权和,也就是AC自动机上,根到证言结束位置路径上的点权和。
每一个查询,就是查询在一段时间内,根到证言结束位置路径上的点权和。。。
所以就树上莫队一波了。。前两维时间,第三维是AC自动机上的位置。。再来个树状数组维护一波...
时间复杂度O(n^(3/5)logn)。。。。卡时过的。。。还要注意一下块的大小。。。
#include<cstdio>
#include<iostream>
#include<cstring>
#include<cmath>
#include<algorithm>
#define ll long long
using namespace std;
const int maxn=<<;
struct zs{int too,pre;}e[maxn];int tt,last[maxn];
struct ask{int x,tim,timl,id;}b[maxn];
int B[maxn];
int ch[maxn][],fail[maxn],dl[maxn],cnt;
int dfn[maxn],mp[maxn],TIME,L[maxn],R[maxn],TIM;
int pos[maxn],pos1[maxn],tim1[maxn],a[maxn];
int i,j,k,n,m;
ll sum,an[maxn];
bool u[maxn]; int ra;char rx;
inline int read(){
rx=getchar(),ra=;
while(rx<''||rx>'')rx=getchar();
while(rx>=''&&rx<='')ra*=,ra+=rx-,rx=getchar();return ra;
} void dfs(int x){
L[x]=++TIM;
for(int i=last[x];i;i=e[i].pre)
dfs(e[i].too);
R[x]=TIM;//printf(" x:%d l--r:%d %d\n",x,L[x],R[x]);
}
void dfs2(int x){
dfn[x]=++TIME,mp[TIME]=x;//printf("x:%d dfn:%d\n",x,dfn[x]);
for(int i=;i<;i++)if(ch[x][i])
dfs2(ch[x][i]);
mp[++TIME]=x;
}
inline void insert(int a,int b){e[++tt].too=b,e[tt].pre=last[a],last[a]=tt;/*printf("%d-->%d\n",a,b);*/} int t[maxn],t1[maxn];
inline void add1(int x){/*printf(" add1:%d\n",x);*/while(x<=cnt)t1[x]++,x+=x&-x;}
inline void del1(int x){/*printf(" del1:%d\n",x);*/while(x<=cnt)t1[x]--,x+=x&-x;}
inline int get1(int l,int r){
int sm=;//printf(" get1:%d--%d",l,r);
l--;while(l)sm-=t1[l],l-=l&-l;
while(r)sm+=t1[r],r-=r&-r;/*printf(": %d\n",sm);*/return sm;
} inline int get(int x){
// printf("get:%d",x);
int sm=;while(x)sm+=t[x],x-=x&-x;//printf(" %d\n",sm);
return sm;
}
inline void add(int l,int r){
if(!l)return;//printf("add: %d--%d\n",l,r);
sum+=get1(l,r);
while(l<=cnt)t[l]++,l+=l&-l;
r++;while(r<=cnt)t[r]--,r+=r&-r;
}
inline void del(int l,int r){
if(!l)return;//printf("del: %d--%d\n",l,r);
sum-=get1(l,r);
while(l<=cnt)t[l]--,l+=l&-l;
r++;while(r<=cnt)t[r]++,r+=r&-r;
} void getfail(){
int l=,r=,i,p,now,j;dl[]=;
while(l<r){
now=dl[++l];
for(i=;i<;i++)if(ch[now][i]){
dl[++r]=j=ch[now][i];
for(p=fail[now];p&&!ch[p][i];p=fail[p]);
fail[j]=!now?:ch[p][i],insert(fail[j],j);
}
}
} bool cmp(ask a,ask b){
return B[a.timl]==B[b.timl]?(B[a.tim]==B[b.tim]?a.x<b.x:B[a.tim]<B[b.tim]):B[a.timl]<B[b.timl];
}
int main(){
m=read();char id[],c[];int x,tm=,numb=,n=,n1=;
for(i=;i<=m;i++){
scanf("%s",id);
if(id[]=='I'){
n++,scanf("%s",c),c[]-='a',x=read();
if(!ch[pos[x]][c[]])ch[pos[x]][c[]]=++cnt;//printf(" .. %d %d\n",pos[x],c[0]);
pos[n]=ch[pos[x]][c[]];//,tim[n]=tm;
}
if(id[]=='A'){
n1++,scanf("%s",c),c[]-='a',x=read();
if(!ch[pos1[x]][c[]])ch[pos1[x]][c[]]=++cnt;//,printf(" %d %d\n",pos1[x],c[0]);
pos1[n1]=ch[pos1[x]][c[]],tim1[n1]=tm;
}
if(id[]=='S')
tm++,a[tm]=pos[read()];
if(id[]=='Q')
b[++numb].x=read(),b[numb].tim=tm,b[numb].timl=tim1[b[numb].x]+,b[numb].id=numb;
}
cnt++;
getfail();
dfs(),dfs2();int kuai=(int)pow(tm,1.8/)+;
for(i=;i<=tm+;i++)B[i]=(i+kuai-)/kuai;
for(i=;i<=numb;i++)b[i].x=dfn[pos1[b[i].x]];
sort(b+,b++numb,cmp); int l=,r=,pos=;L[]=R[]=,u[mp[]]=;
for(i=;i<=numb;i++){
// printf("ask: %d--%d %d--%d x:%d sum:%lld\n",b[i].timl,b[i].tim,B[b[i].timl],B[b[i].tim],b[i].x,sum);
while(l>b[i].timl)l--,add(L[a[l]],R[a[l]]);
while(r<b[i].tim)r++,add(L[a[r]],R[a[r]]);
while(l<b[i].timl)del(L[a[l]],R[a[l]]),l++;
while(r>b[i].tim)del(L[a[r]],R[a[r]]),r--;//printf("sum: %lld\n",sum);
while(pos>b[i].x){
if(u[mp[pos]])sum-=get(L[mp[pos]]),del1(L[mp[pos]]);else sum+=get(L[mp[pos]]),add1(L[mp[pos]]);
u[mp[pos]]^=,pos--;
}
while(pos<b[i].x){
pos++;//printf("x: %d dfn:%d L:%d\n",mp[pos],pos,L[mp[pos]]);
if(u[mp[pos]])sum-=get(L[mp[pos]]),del1(L[mp[pos]]);else sum+=get(L[mp[pos]]),add1(L[mp[pos]]);
u[mp[pos]]^=;
}
an[b[i].id]=sum;
}
for(i=;i<=numb;i++)printf("%lld\n",an[i]);
}
[51nod Round15 E ]Danganronpa的更多相关文章
- 【51Nod 1244】莫比乌斯函数之和
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1244 模板题... 杜教筛和基于质因子分解的筛法都写了一下模板. 杜教筛 ...
- 51Nod 1268 和为K的组合
51Nod 1268 和为K的组合 1268 和为K的组合 基准时间限制:1 秒 空间限制:131072 KB 分值: 20 难度:3级算法题 给出N个正整数组成的数组A,求能否从中选出若干个,使 ...
- 51Nod 1428 活动安排问题
51Nod 1428 活动安排问题 Link: http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1428 1428 活 ...
- 51Nod 1278 相离的圆
51Nod 1278 相离的圆 Link: http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1278 1278 相离的圆 基 ...
- 51nod算法马拉松15
智力彻底没有了...看来再也拿不到奖金了QAQ... A B君的游戏 因为数据是9B1L,所以我们可以hash试一下数据... #include<cstdio> #include<c ...
- 【51Nod 1501】【算法马拉松 19D】石头剪刀布威力加强版
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1501 dp求出环状不连续的前缀和,剩下东西都可以算出来,比较繁琐. 时间 ...
- 【51Nod 1622】【算法马拉松 19C】集合对
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1622 简单题..直接暴力快速幂 #include<cstdio&g ...
- 【51Nod 1616】【算法马拉松 19B】最小集合
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1616 这道题主要是查询一个数是不是原有集合的一个子集的所有数的gcd. ...
- 【51Nod 1674】【算法马拉松 19A】区间的价值 V2
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1674 对区间分治,统计\([l,r]\)中经过mid的区间的答案. 我的 ...
随机推荐
- Spring框架(三) JDBCTemplate,声明式事务,自动装载(注解)
JDBCTemplate 按照标准正常项目的结构 结构图: model层 dao层 实现 dao:(DateBase Access Object) 数据访问对象,dao层只用来访问数据库和模型层 s ...
- APP的线程安全
一般来说iOS中两个就够了,但是安卓中的第三个,iOS也是要注意的: 第一:网络方面,别人以为做数据请求用post会比get请求安全,但是这是错的,post请求虽然看起来你的请求是在请求体上,不像ge ...
- Add to List 349. Intersection of Two Arrays
Given two arrays, write a function to compute their intersection. Example:Given nums1 = [1, 2, 2, 1] ...
- 我是如何确认线上CLOSE_WAIT产生的原因及如何解决的。
1.阐述 内部架构:Tomcat应用程序---> nginx ---> 其他Tomcat应用程序,内部Tomcat应用通过nginx调用其他应用. HTTP插件:HttpClient 4. ...
- Nodejs的运行原理-架构篇
前言 本来是想只做一个Nodejs运行原理-科普篇,但是收到了不少私信,要我多分享一些更进阶,更详细的内容,所以我会在接下来的两个月里继续更新Nodejs运行原理. PS:此系列只做Nodejs的运行 ...
- SVN添加用户权限
点击properties
- Oracle中session和processes的设置
欢迎和大家交流技术相关问题: 邮箱: jiangxinnju@163.com 博客园地址: http://www.cnblogs.com/jiangxinnju GitHub地址: https://g ...
- DM企业建站系统v201710 sql注入漏洞分析 | 新版v201712依旧存在sql注入
0x00 前言 本来呢,这套CMS都不想审的了.下载下来打开一看,各种debug注释,排版烂的不行. 贴几个页面看看 感觉像是新手练手的,没有审下去的欲望了. 但想了想,我tm就是新手啊,然后就继续看 ...
- windows 纤程
纤程本质上也是线程,是多任务系统的一部分,纤程为一个线程准并行方式调用多个不同函数提供了一种可能,它本身可以作为一种轻量级的线程使用.它与线程在本质上没有区别,它也有上下文环境,纤程的上下文环境也是一 ...
- 简易 (I/O)版本通讯录
#include <stdio.h> #include<assert.h> //#include<malloc.h> #include<string.h> ...