bzoj 3439: Kpm的MC密码 Trie+动态开点线段树
题目大意:
题解:
首先我们发现这道题要查的是后缀不是前缀.
如果查前缀就可以迅速查找到字符串了不是吗hhhhh.
所以我们把所有的串倒过来
然后在每个节点上维护一颗线段树储存以它为根的子树中结尾的字符串的编号支持查找k大即可.
他们说这会T,但我跑的挺快的.
#include <vector>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long ll;
inline void read(int &x){
x=0;char ch;bool flag = false;
while(ch=getchar(),ch<'!');if(ch == '-') ch=getchar(),flag = true;
while(x=10*x+ch-'0',ch=getchar(),ch>'!');if(flag) x=-x;
}
inline int cat_max(const int &a,const int &b){return a>b ? a:b;}
inline int cat_min(const int &a,const int &b){return a<b ? a:b;}
const int maxn = 320010;
struct Edge{
int to,next;
}G[maxn<<1];
int head[maxn],cnt;
void add(int u,int v){
G[++cnt].to = v;
G[cnt].next = head[u];
head[u] = cnt;
}
int ch[maxn][30],a[maxn],nodecnt;
char s[maxn];
void insert(int id){
int n = strlen(s+1);
int nw = 0;
for(int i=n;i>=1;--i){
if(ch[nw][s[i] - 'a'] == 0){
ch[nw][s[i] - 'a'] = ++nodecnt;
nw = nodecnt;
}else nw = ch[nw][s[i] - 'a'];
}add(nw,id);
}
int ind[maxn],oud[maxn],dfs_clock;
#define v G[i].to
void dfs(int u){
int num = dfs_clock;
for(int i = head[u];i;i=G[i].next){
a[++dfs_clock] = v;
}
for(int i = 'a';i <= 'z';++i){
if(ch[u][i-'a'] != 0){
dfs(ch[u][i - 'a']);
}
}
for(int i = head[u];i;i=G[i].next) ind[v] = num,oud[v] = dfs_clock;
}
#undef v
struct Node{
Node *ch[2];
int num;
void update(){
num = ch[0]->num + ch[1]->num;
}
}*null,*T[maxn];
Node mem[maxn*30],*C;
inline void init(){
C = mem;null = C++;
null->ch[0] = null->ch[1] = null;
null->num = 0;T[0] = null;
}
Node* build(Node *rt,int l,int r,int pos){
Node *p = C++;*p = *rt;
if(l == r){
p->num ++ ;
return p;
}
int mid = l+r >> 1;
if(pos <= mid) p->ch[0] = build(rt->ch[0],l,mid,pos);
else p->ch[1] = build(rt->ch[1],mid+1,r,pos);
p->update();return p;
}
int query(Node *p1,Node *p2,int l,int r,int x){
while(l != r){
int mid = l+r >> 1;
int tmp = p2->ch[0]->num - p1->ch[0]->num;
if(x > tmp){
x -= tmp;
p1 = p1->ch[1];p2 = p2->ch[1];
l = mid+1;
}else{
p1 = p1->ch[0];p2 = p2->ch[0];
r = mid;
}
}return l;
}
int main(){
int n;read(n);
init();
for(int i=1;i<=n;++i){
scanf("%s",s+1);
insert(i);
}
dfs(0);
for(int i=1;i<=n;++i) T[i] = build(T[i-1],1,n,a[i]);
for(int i=1,x;i<=n;++i){
read(x);
if(oud[i] - ind[i] < x) puts("-1");
else printf("%d\n",query(T[ind[i]],T[oud[i]],1,n,x));
}
getchar();getchar();
return 0;
}
bzoj 3439: Kpm的MC密码 Trie+动态开点线段树的更多相关文章
- BZOJ 3439: Kpm的MC密码( trie + DFS序 + 主席树 )
把串倒过来插进trie上, 那么一个串的kpm串就是在以这个串最后一个为根的子树, 子树k大值的经典问题用dfs序+可持久化线段树就可以O(NlogN)解决 --------------------- ...
- BZOJ 3439 Kpm的MC密码 (Trie树+线段树合并)
题面 先把每个串反着插进$Trie$树 每个节点的子树内,可能有一些节点是某些字符串的开头 每个节点挂一棵权值线段树,记录这些节点对应的原来字符串的编号 查询的时候在线段树上二分即可 为了节省空间,使 ...
- BZOJ 3439: Kpm的MC密码 (trie+dfs序主席树)
题意 略 分析 把串倒过来插进trietrietrie上, 那么一个串的kpmkpmkpm串就是这个串在trietrietrie上对应的结点的子树下面的所有字符串. 那么像 BZOJ 3551/354 ...
- bzoj 3439 Kpm的MC密码(Trie+dfs序+主席树)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=3439 [题意] 给定若干串,问一个串的作为其后缀的给定串集合中的第k小. [思路] 如 ...
- BZOJ 3439 Kpm的MC密码
倒着建trie,然后主席树来求子树第k大. #include<iostream> #include<cstdio> #include<cstring> #inclu ...
- BZOJ 3531 [Sdoi2014]旅行 树链剖分+动态开点线段树
题意 S国有N个城市,编号从1到N.城市间用N-1条双向道路连接,满足从一个城市出发可以到达其它所有城市.每个城市信仰不同的宗教,如飞天面条神教.隐形独角兽教.绝地教都是常见的信仰. 为了方便,我们用 ...
- [bzoj 3531][SDOI2014]旅行(树链剖分+动态开点线段树)
题目:http://www.lydsy.com:808/JudgeOnline/problem.php?id=3531 分析: 对于每个颜色(颜色<=10^5)都建立一颗线段树 什么!那么不是M ...
- BZOJ 3531: [Sdoi2014]旅行 (树剖+动态开点线段树)
对于每种信仰维护一棵动态开点线段树就行了- #include <cstdio> #include <cctype> #include <cstring> #incl ...
- [2016湖南长沙培训Day4][前鬼后鬼的守护 chen] (动态开点线段树+中位数 or 动规 or 贪心+堆优化)
题目大意 给定一个长度为n的正整数序列,令修改一个数的代价为修改前后两个数的绝对值之差,求用最小代价将序列转换为不减序列. 其中,n满足小于500000,序列中的正整数小于10^9 题解(引自mzx神 ...
随机推荐
- python 基础 9.11 更改数据
#/usr/bin/python #-*- coding:utf-8 -*- #@Time :2017/11/24 4:45 #@Auther :liuzhenchuan #@File :更改 ...
- Spring框架结构
在processOn思维导图上看的一个程序员写的,挺不错的,分享出来,便于学习和回顾.
- Hadoop DataNode 节点的动态添加和动态删除
动态添加 DataNode 节点 hadoop环境是必须的 需要加入新的 DataNode 节点,前提是已经配置好 SSH 无密登录:直接复制已有DataNode中.ssh目录中的authorized ...
- SpringMVC拦截器实现用户登录拦截
本例实现登陆时的验证拦截,采用SpringMVC拦截器来实现 当用户点击到网站主页时要进行拦截,用户登录了才能进入网站主页,否则进入登陆页面 核心代码 首先是index.jsp,显示链接 1 < ...
- nginx服务器的内核调优
TCP公有类 net.core.somaxconn = 262144 net.core.netdev_max_backlog = 262144 net.ipv4.ip_local_port_range ...
- Python小练习(持续更新....)
最近一直在学习python,这些小练习有些是书上的,有些是别人博客上的! # 1.题目1# 给一个字符串,统计其中的数字.字母和其他类型字符的个数:# 比如输入“124mid-=”,输出:数字=3,字 ...
- 小程序JSON数组操作
- 【python】-- 类的多继承、经典类、新式类
继承知识点补充 在python还支持多继承,但是一般我们很少用,有些语言干脆就不支持多继承,有多继承,就会带来两个概念,经典类和新式类. 一.多继承 之前我们都是讲的单继承,那么什么是多继承呢?说白了 ...
- 我的Android进阶之旅------>HTTP Header 详解
HTTP(HyperTextTransferProtocol)即超文本传输协议,目前网页传输的的通用协议.HTTP协议采用了请求/响应模型,浏览器或其他客户端发出请求,服务器给与响应.就整个网络资源传 ...
- Token Fund到底是什么?
相比传统的VC基金,作为新生事物的Token Fund从一出场便吸引着行业目光的追随.行业早期ICO促使区块链行业野蛮生长,大量区块链项目涌现,同时也带动了大量“代投”朝Token Fund方向发展. ...