【BZOJ 1014】【JSOI 2008】火星人prefix
看了《Hash在信息学竞赛中的一类应用》中的例题3,这道题很类似啊,只不过没有删点和区间翻转。
用Splay维护字符串哈希,加点改点什么的就不用说了,查询时二分答案,这样时间复杂度是$O(mlog^2 n)$的
论文的例题3中删点很简单,和插点一样,不用说了,区间翻转只要打一个翻转标记,维护正序hash和逆序hash,翻转时交换两个hash值即可。
对拍终于成功了QAQ,插点时孩子不认父亲TwT又手残了~
《Hash在信息学竞赛中的一类应用》中还提到了块状链表的做法,都很易懂:
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
const int N = 100003;
const int p = 9875321; int P[N];
struct node *null;
struct node {
node *ch[2], *fa;
int k, s, ha;
node (int _k = 0) {k = _k; s = 1; ha = _k; ch[0] = ch[1] = fa = null;}
void setc(node *r, bool c) {this->ch[c] = r; r->fa = this;}
bool pl() {return fa->ch[1] == this;}
void count() {
s = ch[0]->s + ch[1]->s + 1;
ha = ((ch[0]->ha + 1ll * k * P[ch[0]->s]) % p + 1ll * ch[1]->ha * P[ch[0]->s + 1] % p) % p;
}
} *root; int n, m;
char s[N]; namespace Splay {
node *Build(int l, int r) {
if (l > r) return null;
int mid = (l + r) >> 1;
node *t = new node(s[mid] - 'a');
t->ch[0] = Build(l, mid - 1); t->setc(t->ch[0], 0);
t->ch[1] = Build(mid + 1, r); t->setc(t->ch[1], 1);
t->count();
return t;
}
void init() {
P[0] = 1; for(int i = 1; i < N; ++i) P[i] = P[i - 1] * 26 % p;
null = new node; null->s = 0; null->ch[0] = null->ch[1] = null->fa = null;
scanf("%s", s + 1); n = strlen(s + 1); root = Build(1, n);
}
void rotate(node *r) {
node *f = r->fa;
bool c = r->pl();
if (f != root) f->fa->setc(r, f->pl());
else root = r, r->fa = null;
f->setc(r->ch[!c], c);
r->setc(f, !c);
f->count();
}
void splay(node *r, node *tar = null) {
for(; r->fa != tar; rotate(r))
if (r->fa->fa != tar) rotate(r->pl() == r->fa->pl() ? r->fa : r);
r->count();
}
node *kth(int k) {
node *r = root;
while (1) {
if (r->ch[0]->s >= k) r = r->ch[0];
else if (r->ch[0]->s + 1 >= k) return r;
else k -= (r->ch[0]->s + 1), r = r->ch[1];
}
}
int hash(int l, int r) {
if (l == 1 && r == n) return root->ha;
else if (l == 1) {splay(kth(r + 1)); return root->ch[0]->ha;}
else if (r == n) {splay(kth(l - 1)); return root->ch[1]->ha;}
else {splay(kth(l - 1)); splay(kth(r + 1), root); return root->ch[1]->ch[0]->ha;}
}
void QQ(int l, int r) {
int left = 0, right = root->s - max(l, r) + 1, mid;
while (left < right) {
mid = (left + right + 1) >> 1;
if (hash(l, l + mid - 1) == hash(r, r + mid - 1)) left = mid;
else right = mid - 1;
}
printf("%d\n", left); return;
}
void RR(int k, int num) {
node *r = kth(k);
r->k = num;
splay(r);
}
void II(int k, int num) {
if (k == 0) {
node *r = root;
while (r->ch[0] != null) r = r->ch[0];
r->setc(new node(num), 0);
splay(r->ch[0]);
} else {
splay(kth(k));
if (k == n) {
root->setc(new node(num), 1);
splay(root->ch[1]);
} else {
splay(kth(k + 1), root);
root->ch[1]->setc(new node(num), 0);
splay(root->ch[1]->ch[0]);
}
}
++n;
}
} int main() {
Splay::init();
scanf("%d", &m);
char c; int x, y;
while (m--) {
for(c = getchar(); c < 'A' || c > 'Z'; c = getchar());
switch (c) {
case 'Q':
scanf("%d%d", &x, &y);
Splay::QQ(x, y);
break;
case 'R':
scanf("%d", &x); for(c = getchar(); c < 'a' || c > 'z'; c = getchar());
Splay::RR(x, c - 'a');
break;
case 'I':
scanf("%d", &x); for(c = getchar(); c < 'a' || c > 'z'; c = getchar());
Splay::II(x, c - 'a');
break;
}
}
return 0;
}
对拍大法好~
【BZOJ 1014】【JSOI 2008】火星人prefix的更多相关文章
- JSOI 2008 火星人prefix
FROM http://www.lydsy.com/JudgeOnline/problem.php?id=1014 LCP问题 给定串 S[0..n] , 对于一对(a,b)其中0<a,b< ...
- Bzoj 1014&Luogu 4036 火星人Prefix(FHQ-Treap)
题面 洛谷 Bzoj 题解 首先,这种带修改的是不能用$SA$的,然后,我们做$SA$的题一般也能二分+$Hash$,所以不妨考虑用$FHQ-Treap$维护树,然后查询就用二分+$Hash$. $H ...
- 【BZOJ 1014】 [JSOI2008]火星人prefix
[题目链接]:http://www.lydsy.com/JudgeOnline/problem.php?id=1014 [题意] 让你在线查询最长公共前缀. 支持单节点修改; 插入操作; [题解] / ...
- [BZOJ 1013][JSOI 2008] 球形空间产生器sphere 题解(高斯消元)
[BZOJ 1013][JSOI 2008] 球形空间产生器sphere Description 有一个球形空间产生器能够在n维空间中产生一个坚硬的球体.现在,你被困在了这个n维球体中,你只知道球 面 ...
- [BZOJ1074] [luogu 4036] [JSOI 2008] 火星人 (二分答案+哈希+fhq treap)
[BZOJ1074] [luogu 4036] [JSOI 2008] 火星人 (二分答案+哈希+fhq treap) 题面 给出一个长度为n的字符串,m个操作,字符串仅包含小写英文字母 操作1:在k ...
- BZOJ 1016 JSOI 2008 最小生成树计数 Kruskal+搜索
题目大意:给出一些边,求出一共能形成多少个最小生成树. 思路:最小生成树有非常多定理啊,我也不是非常明确.这里仅仅简单讲讲做法.关于定各种定理请看这里:http://blog.csdn.net/wyf ...
- 【BZOJ】【1014】【JLOI2008】火星人prefix
Splay/二分/Hash 看了网上的题目关键字(都不用点进去看……我也是醉了)了解到做法= =那就上呗,前面做了好几道Splay的题就是为了练手搞这个的. Hash判断字符串是否相同应该很好理解吧? ...
- BZOJ 1014: [JSOI2008]火星人prefix [splay 二分+hash] 【未完】
1014: [JSOI2008]火星人prefix Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 6243 Solved: 2007[Submit] ...
- BZOJ 1014: [JSOI2008]火星人prefix Splay+二分
1014: [JSOI2008]火星人prefix 题目连接: http://www.lydsy.com/JudgeOnline/problem.php?id=1014 Description 火星人 ...
- bzoj 1014: [JSOI2008]火星人prefix hash && splay
1014: [JSOI2008]火星人prefix Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 3154 Solved: 948[Submit][ ...
随机推荐
- TestNG之注解的生命周期
有必要介绍一下TestNG注解的生命周期,先看一下官网支持的注解有 @BeforeSuite@AfterSuite@BeforeTest@AfterTest@BeforeGroups@AfterGro ...
- UART to Serial Terminal(转载)
前一篇<UART Explained>介绍了UART的基本信息,重点分析了UART的信号.本文摘录的文章则重点介绍了波特率(Baud Rate)相关的内容,波特率越高,传输速度越快,但实际 ...
- Java 序列化Serializable
a)当一个父类实现序列化,子类自动实现序列化,不需要显式实现Serializable接口: b)当一个对象的实例变量引用其他对象,序列化该对象时也把引用对象进行序列化: c) static,trans ...
- http协议(九)响应首部字段
响应首部字段: 服务器向客户端返回响应报文中所使用的字段,用于补充的附加信息.服务器信息.以及对客户端的附加要求等 1.Accept-Ranges 告知客户端服务器能否处理范围请求,以指定获取服务器的 ...
- PHP 图片处理PNG颜色丢失
根据需求做一个用户点击测试桃花运的小程序.在开发中需要使用PHP进行开发,原理是将用户的姓名通过php的图片处理写入图片中,此处遇到一巨坑. 就是png图片在调用 imagecolorallocate ...
- 58种jQuery模拟CSS3过渡页面切换特效
演示网址 http://www.htmleaf.com/Demo/201503251573.html 点击下载
- C语言:枚举类型
整数常量的符号名称... #include <stdio.h> enum _bool {false,true}; int main(){ enum colors { red, orange ...
- Nginx 使用IP限制访问来源
在 server {... 下, 或者在 location xxx {... 下, 都可以添加如下的IP访问限制 allow 10.57.22.172; allow ; allow ; allow ; ...
- 夯实基础之php学习-1基础篇
1,单引号和双引号的区别 单引号表示字符串,双引号能解析字符串中的变量,所以,如果没有变量,尽量用单引号,加快解析速度 当字符串需要单引号或者双引号的时候,可以用转义字符代替 2,类型转换 通过(bo ...
- AAL模版 中英文对照
来源:http://52brain.com/thread-17336-1-1.html Brodmann分区是一个根据细胞结构将大脑皮层划分为一系列解剖区域的系统.神经解剖学中所谓细胞结构(Cytoa ...