Wannafly挑战赛11 D 白兔的字符串 [Hash]

题意:给你一个串,n个询问,每个询问求当前串包含这个串(包括循环)的个数。

题解:hash字符串,然后对下面的串进行hash查找,但是用map会TLE,可以考虑映射表。

AC代码:

#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;
typedef unsigned long long ull;
const ull mod=100007;
const ull base=123;
ull h[1000005],has[2000005];
char s[2000005];
struct node
{
	ull w;
	int next;
	node(){}
	node(ull w,int next)
	{
		this->w=w;
		this->next=next;
	}
}rode[2000005];
int head[mod],tot;
void add(ull x)
{
	int pos=x%mod;
	rode[tot]=node(x,head[pos]);
	head[pos]=tot++;
}
int find(ull x)
{
	int pos=x%mod;
	for(int i=head[pos];~i;i=rode[i].next)
		if(rode[i].w==x)return 1;
	return 0;
}
void init()
{
	memset(head,-1,sizeof(head));
	h[0]=1;
	for(int i=1;i<=1000000;i++)
		h[i]=h[i-1]*base;
}
int main()
{
	init();
	int n,len;
	int ans;
	scanf("%s",s+1);
	len=strlen(s+1);
	for(int i=len+1;i<=2*len;i++)
		s[i]=s[i-len];
	for(int i=1;i<2*len;i++)
	{
		has[i]=has[i-1]*base+s[i];
		if(i>=len)	add(has[i]-has[i-len]*h[len]);
	}
	scanf("%d",&n);
	while(n--)
	{
		ans=0;
		scanf("%s",s+1);
		int l=strlen(s+1);
		for(int i=1;i<=l;i++)
		{
			has[i]=has[i-1]*base+s[i];
			if(i>=len)ans+=find(has[i]-has[i-len]*h[len]);
		}
		printf("%d\n",ans);
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值