poj-2758 Checking the Text

题意:

给定一个字符串,要求维护两种操作:

I:在字符串中插入一个字符;

Q:询问某两个位置开始的LCP;

插入操作<=200,字符串长度<=5w,查询操作<=2w;

题解:

第一道RKhash题,插入太少让这题变成了傻题;

注意题中描述的各种恶心的下标讨论;

插入下标是当前下标,而查询是原下标;

查询就是二分答案,利用RKhash快速合并的性质搞搞;

复杂度O(mlogn+100n);

单组数据,略微卡常;

代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
#define N 51000
#define mod 1000000009ll
using namespace std;
typedef unsigned long long ull;
int p[N],len;
char str[N],op[10];
ull hash[N],pow[N];
void Build(int x)
{
	for(int i=x;i<=len;i++)
		hash[i]=(hash[i-1]*131+str[i])%mod;
}
int query(int x,int y)
{
	int l=0,r=len-max(x,y)+1;
	while(l<=r)
	{
		int mid=l+r>>1;
		if((hash[x+mid-1]-hash[x-1]*pow[mid]%mod+mod)%mod==
		   (hash[y+mid-1]-hash[y-1]*pow[mid]%mod+mod)%mod)
			l=mid+1;
		else
			r=mid-1;
	}
	return r;
}
int main()
{
	int n,m,i,j,k,x,y;
	pow[0]=1;
	for(i=1;i<N;i++)
		pow[i]=pow[i-1]*131%mod;
	scanf("%s",str+1);
	n=len=strlen(str+1);
	scanf("%d",&m);
	Build(1);
	for(i=1;i<=n;i++)
		p[i]=i;
	for(i=1;i<=m;i++)
	{
		scanf("%s",op);
		if(op[0]=='I')
		{
			scanf("%s%d",op,&x);
			if(x>len)	x=len+1;
			memcpy(str+x+1,str+x,sizeof(char)*(len-x+1));
			str[x]=op[0];
			for(j=n;j>=1;j--)
			{
				if(p[j]>=x)
					p[j]++;
				else
					break;
			}
			len++;
			Build(x);
		}
		else
		{
			scanf("%d%d",&x,&y);
			printf("%d\n",query(p[x],p[y]));
		}
	}
	return 0;
}
时间: 2024-10-06 00:04:24

poj-2758 Checking the Text的相关文章

POJ 2758 Checking the Text(Hash+二分答案)

[题目链接] http://poj.org/problem?id=2758 [题目大意] 给出一个字符串,支持两个操作,在任意位置插入一个字符串,或者查询两个位置往后的最长公共前缀,注意查询的时候是原串下标,插入的时候则是最近更新串的下标. [题解] 因为插入操作只有两百次,所以考虑hash重构来处理匹配问题,碰到插入就重构插入点往后的哈希表,否则二分两个位置往后的匹配长度,查hash表判断是否可行. [代码] #include <cstdio> #include <algorithm&

POJ 2394 Checking an Alibi (最短路+Dijkstra)

Checking an Alibi Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 6217   Accepted: 2257 Description A crime has been comitted: a load of grain has been taken from the barn by one of FJ's cows. FJ is trying to determine which of his C (1

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

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

poj 2758 多重部分和

题意:给你一个n行4列的矩阵,从每列选择一个数字,问这四个数字加起来为0的数字组合有多少个? 思路:暴力O(n4)超时,只有把前两个数字的所有和枚举出来(O(n2)),然后排序(O(nlogn)),最后枚举最后两数的所有组合,每一个组合用二分查找已经排序好的前两个数字组合(O(n2logn)),故总的复杂度是:O(n2logn) 代码: #include <set> #include <map> #include <cmath> #include <stack&g

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; stru

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

POJ2758 Checking the Text

题目链接:https://vjudge.net/problem/POJ-2758 题目大意: 先给出一串原始字符串,在此基础上执行两种操作: 1.在第 p 个字符前添加字符 ch,如果 p 比现字符串的长度 nowlen 大,则添加到现字符串的末尾.注意,这里的所有位置都是相对于变化后的字符串而言的! 2.查询第 i 个和第 j 个后缀的最长公共前缀.注意,这里的位置是相对于原始字符串而言的. 解题思路: 这道题真的可以说是最近几个月我做的最痛苦的一道题之一了.真的很煎熬. 一开始,我的思路是后

kuangbin带你飞 后缀数组 题解

2份模板 DC3 . 空间复杂度O3N 时间复杂度On #define F(x) ((x) / 3 + ((x) % 3 == 1 ? 0 : tb)) #define G(x) ((x) < tb ? (x) * 3 + 1 :((x) - tb) * 3 + 2) const int MAXN = 300010; const int MAXM = 100010; char input[MAXM]; int wa[MAXN],wb[MAXN],ws[MAXN],wv[MAXN],wsd[MAX

windows git安装后更换the line ending conversions

Is there a file or menu that will let me change the settings on how to deal with line endings? There are 3 options: Checkout Windows-style, commit Unix-style line endings Git will convert LF to CRLF when checking out text files. When committing text