upd:感谢评论里@spacevortex 指正 暴力链加复杂度是$O(\sum |s|)$的 也可以通过owo

子串看起来就很SuffixStructures

于是上SAM

本来想着直接LCT

后来发现没法串定位(暴力匹配复杂度不对)

然后就离线吧,先建出来然后链加子树和,树剖就odk。

其实更直接的套路是线段树合并right集合维护。

这个题很像BZOJ3881 那个题更复杂一点,需要树链的并(到时候看看这个题可不可以加强一下扔到校内模拟赛

当然还有正确的ACA写法,直接FAIL树上主席树。(就更像BZOJ3881了

(但感觉都很暴力,我的想法貌似还挺好的)

顺便学习了广义SAM的正确写法。(发现之前的写法死活改不对

//Love and Freedom.
#include<cmath>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
#define ll long long
#define inf 20021225
#define N 200010
#define pb push_back
using namespace std;
int read()
{
int s=,f=; char ch=getchar();
while(ch<''||ch>''){if(ch=='-') f=-; ch=getchar();}
while(ch>=''&&ch<='') s=s*+ch-'',ch=getchar();
return f*s;
}
struct node{int ch[],fa,len;}t[N<<];
struct edge{int to,lt;}e[N<<];
int lt,poi,cnt,rt,ed[N],in[N<<];
vector<int> endpos;
void insert(int c,int id)
{
if(t[lt].ch[c])
{
int p=lt,np=lt=t[p].ch[c];
if(t[np].len==t[p].len+) ed[id]=np,endpos.pb(np);
else
{
int nq=++poi; ed[id]=nq; endpos.pb(nq); t[nq].len=t[p].len+;
memcpy(t[nq].ch,t[np].ch,sizeof(t[np].ch));
t[nq].fa=t[np].fa; t[np].fa=nq;
for(;p&&t[p].ch[c]==np;p=t[p].fa) t[p].ch[c]=nq;
lt=nq;
}
return;
}
int p=lt,np=lt=++poi; endpos.pb(np); ed[id]=np; t[np].len=t[p].len+;
for(;p&&!t[p].ch[c];p=t[p].fa) t[p].ch[c]=np;
if(!p){t[np].fa=rt; return;} int q=t[p].ch[c];
if(t[q].len==t[p].len+){t[np].fa=q; return;}
int nq=++poi; t[nq].fa=t[q].fa; t[q].fa=t[np].fa=nq;
memcpy(t[nq].ch,t[q].ch,sizeof(t[q].ch)); t[nq].len=t[p].len+;
for(;p&&t[p].ch[c]==q;p=t[p].fa) t[p].ch[c]=nq;
}
#define lowbit(x) (x&-x)
int tr[N<<];
void add(int x,int v){while(x<=poi) tr[x]+=v,x+=lowbit(x);}
void modify(int l,int r,int v){add(l,v); add(r+,-v);}
int query(int x){int a=; while(x) a+=tr[x],x-=lowbit(x); return a;}
int dfn[N<<],tot,sz[N<<],son[N<<],idfn[N<<],top[N<<],fa[N<<];
void addedge(int x,int y){e[++cnt].to=y; e[cnt].lt=in[x]; in[x]=cnt;}
void build(){for(int i=;i<=poi;i++) addedge(t[i].fa,i);}
void dfs(int x,int fr)
{
fa[x]=fr; sz[x]=;
for(int i=in[x];i;i=e[i].lt)
{
int y=e[i].to; dfs(y,x);
sz[x]+=sz[y]; if(sz[y]>=sz[son[x]]) son[x]=y;
}
}
void dfs2(int x,int t)
{
top[x]=t; dfn[x]=++tot; idfn[tot]=x; if(!son[x]) return; dfs2(son[x],t);
for(int i=in[x];i;i=e[i].lt) if(e[i].to!=son[x]) dfs2(e[i].to,e[i].to);
}
void modify(int x,int v)
{
while(x) modify(dfn[top[x]],dfn[x],v), x=fa[top[x]];
}
int ask(int x){return query(dfn[x]);}
#define Q 500010
int n,q; char ch[N]; int ans[Q],pre[N];
struct qry{int id,opt,pos,x;}r[Q<<]; int qwq;
bool operator<(qry a,qry b){return a.pos<b.pos;}
int main()
{
n=read(),q=read(); poi=rt=lt=; int tot=;
for(int i=;i<=n;i++)
{
scanf("%s",ch+); lt=rt; int sn=strlen(ch+);
for(int j=;j<=sn;j++) ++tot,insert(ch[j]-'a',i);
pre[i]=tot;
}
int L,R,K; build(); dfs(,); dfs2(,);
for(int i=;i<=q;i++)
L=read(),R=read(),K=read(),
r[++qwq].id=i,r[qwq].opt=-,r[qwq].pos=pre[L-],r[qwq].x=ed[K],
r[++qwq].id=i,r[qwq].opt=,r[qwq].pos=pre[R],r[qwq].x=ed[K];
int p=; sort(r+,r+qwq+);
while(p<=qwq&&!r[p].pos) p++;
for(int i=;i<endpos.size();i++)
{
int pos=endpos[i]; modify(pos,);
while(p<=qwq&&r[p].pos==i+) ans[r[p].id]+=r[p].opt*ask(r[p].x),p++;
}
for(int i=;i<=q;i++) printf("%d\n",ans[i]);
return ;
}

CF547E Mike and Friends的更多相关文章

  1. CF547E Mike and Friends 后缀自动机+线段树合并

    裸题,敲完后没调就过了 ~ code: #include <bits/stdc++.h> using namespace std; #define ll long long #define ...

  2. CF547E Mike and Friends [AC自动机,离线树状数组]

    #include <cstdio> #include <queue> #include <vector> #define pb emplace_back using ...

  3. cf#305 Mike and Foam(容斥)

    C. Mike and Foam time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...

  4. CF #305(Div.2) D. Mike and Feet(数学推导)

    D. Mike and Feet time limit per test 1 second memory limit per test 256 megabytes input standard inp ...

  5. CF #305 (Div. 2) C. Mike and Frog(扩展欧几里得&&当然暴力is also no problem)

    C. Mike and Frog time limit per test 1 second memory limit per test 256 megabytes input standard inp ...

  6. codeforces 361 E - Mike and Geometry Problem

    原题: Description Mike wants to prepare for IMO but he doesn't know geometry, so his teacher gave him ...

  7. codeforces 361 A - Mike and Cellphone

    原题: Description While swimming at the beach, Mike has accidentally dropped his cellphone into the wa ...

  8. codeforces 361 B - Mike and Shortcuts

    原题: Description Recently, Mike was very busy with studying for exams and contests. Now he is going t ...

  9. CodeForces 689C Mike and Chocolate Thieves (二分)

    原题: Description Bad news came to Mike's village, some thieves stole a bunch of chocolates from the l ...

随机推荐

  1. mysql数据库连接错误10060

    今天在使用mysql数据库的时候,出现错误ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10060) 我在网上一顿 ...

  2. 阶段3 1.Mybatis_09.Mybatis的多表操作_9 mybatis多对多操作-查询用户获取用户所包含的角色信息

    sql语句以user作为主表 用户的全部信息,以为用户下的角色的.并不是所有的用户都有角色,有角色的就带角色.没角色的就为null 首先修改实体类 定义List<Role> 生成gette ...

  3. 终极Shell - Oh My Zsh

    介绍 zsh: 与 bash 同为 shell 软件,适用于 linux 和 mac,mac 与百度开发机已自带. oh-my-zsh:zsh 的一个开源配置方案,即下即用,免去复杂的配置过程.配置后 ...

  4. Django 基于角色的权限控制

    有一种场景, 要求为用户赋予一个角色, 基于角色(比如后管理员,总编, 编辑), 用户拥有相应的权限(比如管理员拥有所有权限, 总编可以增删改查, 编辑只能增改, 有些页面的按钮也只有某些角色才能查看 ...

  5. 【BZOJ2622】[2012国家集训队测试]深入虎穴

    虎是中国传统文化中一个独特的意象.我们既会把老虎的形象用到喜庆的节日装饰画上,也可能把它视作一种邪恶的可怕的动物,例如“武松打虎”或者“三人成虎”.“不入虎穴焉得虎子”是一个对虎的威猛的形象的极好体现 ...

  6. Spring MVC-学习笔记(4)数据绑定流程

    1.请求数据在到达处理方法前这段时间. spring MVC还会做请求信息转换.数据转换.数据格式化.数据校验. 2.数据转换 1>ConversionService: Spring类型转换体系 ...

  7. CentOS7创建本地源过程

    1)使用yum安装http服务(主节点) yum -y install httpd 2)将httpd服务加入系统自启动服务并设置开机启动 systemctl start httpd #启动apache ...

  8. dubbo中拦截生产者或消费者服务方法调用

    比如当前有个需求,需要拦截dubbo的服务提供方或者服务消费方的方法,判断参数中是否包含某个关键字进行拦截阻止执行,那么我们可以通过使用dubbo的SPI机制通过实现Filter类来拦截,话不多说直接 ...

  9. python常量 (最全常量解析)

    常量 一.常量 变量是变化的量,常量则是不变的量.python中没有使用语法强制定义常量,也就是说,python中定义常量本质上就是变量.如果非要定义常量,变量名必须全大写. AGE_OF_NICK ...

  10. NOI-LINUX

    先把配置背过吧: (set-background-color "gray15")(set-foreground-color "gray")(global-lin ...