BZOJ 2258 pku2758 Checking the Text 文本校对 Splay+Hash

题目大意:给定一个字符串,多次插入一个字符和询问某两个后缀的LCP

Splay+Hash。同1014

这逗比的询问。。。。。。

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define M 50500
#define BASE 151
using namespace std;
typedef unsigned long long ll;
struct abcd{
	abcd *fa,*ls,*rs;
	int val,size;
	ll hash;
	abcd(int x);
	void Push_Up();
}*null=new abcd(0),*root=null,*tree[M];
int n,m;
char s[M];
ll power[M];
abcd :: abcd(int x)
{
	fa=ls=rs=null;
	hash=val=x;
	size=(bool)x;
}
void abcd :: Push_Up()
{
	size=ls->size+rs->size+1;
	hash=ls->hash*power[rs->size+1]+val*power[rs->size]+rs->hash;
}
void Zig(abcd *x)
{
	abcd *y=x->fa;
	y->ls=x->rs;
	x->rs->fa=y;
	x->rs=y;
	x->fa=y->fa;
	if(y==y->fa->ls)
		y->fa->ls=x;
	else
		y->fa->rs=x;
	y->fa=x;
	y->Push_Up();
	if(y==root)
		root=x;
}
void Zag(abcd *x)
{
	abcd *y=x->fa;
	y->rs=x->ls;
	x->ls->fa=y;
	x->ls=y;
	x->fa=y->fa;
	if(y==y->fa->ls)
		y->fa->ls=x;
	else
		y->fa->rs=x;
	y->fa=x;
	y->Push_Up();
	if(y==root)
		root=x;
}
void Splay(abcd *x,abcd *aim)
{
	while(1)
	{
		abcd *y=x->fa,*z=y->fa;
		if(y==aim)
			break;
		if(z==aim)
		{
			if(x==y->ls)
				Zig(x);
			else
				Zag(x);
			break;
		}
		if(x==y->ls)
		{
			if(y==z->ls)
				Zig(y);
			Zig(x);
		}
		else
		{
			if(y==x->rs)
				Zag(y);
			Zag(x);
		}
	}
	x->Push_Up();
}
void Find(abcd *x,int y,abcd *z)
{
	while(1)
	{
		if(y<=x->ls->size)
			x=x->ls;
		else
		{
			y-=x->ls->size;
			if(y==1)
				break;
			y--;x=x->rs;
		}
	}
	Splay(x,z);
}
void Insert(int pos,int x)
{
	Find(root,pos,null);
	Find(root,pos+1,root);
	(root->rs->ls=new abcd(x))->fa=root->rs;
	root->rs->Push_Up();
	root->Push_Up();
}
abcd* Build_Tree(int x,int y)
{
	if(x>y) return null;
	int mid=x+y>>1;
	abcd *re=new abcd(s[mid]);
	tree[mid]=re;
	(re->ls=Build_Tree(x,mid-1))->fa=re;
	(re->rs=Build_Tree(mid+1,y))->fa=re;
	return re->Push_Up(),re;
}
void Output(abcd *x)
{
	if(x==null)
		return ;
	Output(x->ls);
	printf("----------------------%c\n",x->val);
	Output(x->rs);
}
bool Check(int x,int y,int mid)
{
	Find(root,x,null);
	Find(root,x+mid+1,root);
	ll hash1=root->rs->ls->hash;
	Find(root,y,null);
	Find(root,y+mid+1,root);
	ll hash2=root->rs->ls->hash;
	return hash1==hash2;
}
int Bisection(int x,int y)
{
	int l=0,r=min(n-x+1,n-y+1);
	while(l+1<r)
	{
		int mid=l+r>>1;
		if( Check(x,y,mid) )
			l=mid;
		else
			r=mid;
	}
	if( Check(x,y,r) )
		return r;
	else
		return l;
}
int main()
{
	int i,x,y;
	char p[10];

	for(power[0]=1,i=1;i<M;i++)
		power[i]=power[i-1]*BASE;

	scanf("%s",s+1);n=strlen(s+1);

	root=new abcd(19980402);
	(root->rs=new abcd(19980402))->fa=root;
	(root->rs->ls=Build_Tree(1,n))->fa=root->rs;
	root->rs->Push_Up();
	root->Push_Up();

	cin>>m;
	for(i=1;i<=m;i++)
	{
		scanf("%s",p);
		if(p[0]=='Q')
		{
			scanf("%d%d",&x,&y);
			Splay(tree[x],null);x=root->ls->size;
			Splay(tree[y],null);y=root->ls->size;
			printf("%d\n", Bisection(x,y) );
		}
		else
		{
			scanf("%s%d",p,&x);
			if(x>n) x=n+1;
			Insert(x,p[0]);
			n++;
		}
		//Output(root);
	}
	return 0;
}
时间: 2024-10-29 04:08:07

BZOJ 2258 pku2758 Checking the Text 文本校对 Splay+Hash的相关文章

BZOJ 2258 pku2758 Checking the Text 文本校对 Splay+Hash+二分

题目大意:初始给出一个字符串,下面有一些操作,可以在一个地方加一个字符,询问从两个地方开始最长的匹配长度. 思路:Splay维护Hash值,询问的时候二分一下就行了.它条件给的比较恶心,注意处理的时候按照他说的做就行了. CODE: #define _CRT_SECURE_NO_DEPRECATE #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #de

poj 2758 &amp;&amp; BZOJ 2258 Checking the Text 文本校对

Description   为了给Wind买生日礼物,Jiajia不得不找了一份检查文本的工作.这份工作很无聊:给你一段文本 要求比对从文本中某两个位置开始能匹配的最大长度是多少.但比无聊更糟糕的是,Jiajia的经理 还可能往文本里面插入一些字符. Jiajia想用一个程序来解决这些繁琐的工作.这个程序的速度要足够快,因为Wind的生日就快要到了 Jiajia必须赚到足够多的钱,也就是处理足够多的文本. Input 输入文件第一行是原始文本. 输入文件第二行是操作数n.此后n行,每行描述一条命

【BZOJ】1014: [JSOI2008]火星人prefix(splay+hash+二分+lcp)

http://www.lydsy.com/JudgeOnline/problem.php?id=1014 被sb错调哭了QAQ...insert那里..插入到第x个后边...我......写成了第x个前面..........还调了!好!久! QAQ 本题神lcp做法....表示只会sa的height的离线.......这种在线的我就QAQ做个忧伤的表情... 然后膜拜了题解....好神..splay维护区间...hash+二分维护lcp....QAQ似乎是白书上说的么... 但是这种有概率的题这

【bzoj1014】[JSOI2008]火星人prefix Splay+Hash+二分

题目描述 火星人最近研究了一种操作:求一个字串两个后缀的公共前缀.比方说,有这样一个字符串:madamimadam,我们将这个字符串的各个字符予以标号:序号: 1 2 3 4 5 6 7 8 9 10 11 字符 m a d a m i m a d a m 现在,火星人定义了一个函数LCQ(x, y),表示:该字符串中第x个字符开始的字串,与该字符串中第y个字符开始的字串,两个字串的公共前缀的长度.比方说,LCQ(1, 7) = 5, LCQ(2, 10) = 1, LCQ(4, 7) = 0

[BZOJ 1014] [JSOI2008] 火星人prefix 【Splay + Hash】

题目链接:BZOJ - 1014 题目分析 求两个串的 LCP ,一种常见的方法就是 二分+Hash,对于一个二分的长度 l,如果两个串的长度为 l 的前缀的Hash相等,就认为他们相等. 这里有修改字符和插入字符的操作,所以用 Splay 来维护串的 Hash 值. 一个节点的值就是它的子树表示的字串的 Hash 值. 使用 unsigned long long 然后自然溢出就不需要 mod 了,速度会快很多. 代码 #include <iostream> #include <cstd

bzoj 1588 [HNOI2002] 营业额统计 链表和Splay

来自HNOI 2002营业额的统计一题,这题以前是用链表水过的,最近看见许多splay的题,赶紧张一下知识. 题目大意就是对于一个序列,输出每个元素与它之前元素的差的最小值的和.先说链表的方法吧. 大概就是sort一下,记录每个点的rank.然后链表一下,很好理解,复杂度nlogn,瓶颈在于排序. #include<cstdio> #include<algorithm> #include<iostream> using namespace std; struct nod

BZOJ 3173: [Tjoi2013]最长上升子序列 [splay DP]

3173: [Tjoi2013]最长上升子序列 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 1613  Solved: 839[Submit][Status][Discuss] Description 给定一个序列,初始为空.现在我们将1到N的数字插入到序列中,每次将一个数字插入到一个特定的位置.每插入一个数字,我们都想知道此时最长上升子序列长度是多少? Input 第一行一个整数N,表示我们要将1到N插入序列中,接下是N个数字,第k个数字Xk

BZOJ 1862: [Zjoi2006]GameZ游戏排名系统 Splay

Splay的基本操作,比较繁琐..... 有个一坑点,sorce会超int 1862: [Zjoi2006]GameZ游戏排名系统 Time Limit: 5 Sec  Memory Limit: 64 MB Submit: 913  Solved: 343 [Submit][Status][Discuss] Description GameZ为他们最新推出的游戏开通了一个网站.世界各地的玩家都可以将自己的游戏得分上传到网站上.这样就可以看到自己在世界上的排名.得分越高,排名就越靠前.当两个玩家

BZOJ 题目1588: [HNOI2002]营业额统计(Splay Tree 求前驱后继)

1588: [HNOI2002]营业额统计 Time Limit: 5 Sec  Memory Limit: 162 MB Submit: 10828  Solved: 3771 [Submit][Status][Discuss] Description 营业额统计 Tiger最近被公司升任为营业部经理,他上任后接受公司交给的第一项任务便是统计并分析公司成立以来的营业情况. Tiger拿出了公司的账本,账本上记录了公司成立以来每天的营业额.分析营业情况是一项相当复杂的工作.由于节假日,大减价或者