您的位置:首页 > 其它

POJ3461 字符串hash

2016-02-01 17:02 495 查看
//为了防止冲突,使用了双hash
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<iostream>
#include<algorithm>
#define ull unsigned long long
const ull B=1e8+7,C=1e8+119;
const int dmax=1000100;
char s[dmax],s1[dmax];

int hash(char *a,char *b){
	int ans=0,i;
	ull x=strlen(a),y=strlen(b),t=1,t1=1;
	ull ah=0,bh=0,al=0,bl=0;
	if (x>y)
		return 0;
	for (i=0;i<x;i++){
		t*=B,t1*=C;
		ah=ah*B+a[i],bh=bh*B+b[i];
		al=al*C+a[i],bl=bl*C+b[i];
	}
	for (i=0;i+x<=y;i++){
		if (al==bl && ah==bh)
			ans++;
		if (i+x<y){
			bh=bh*B-b[i]*t+b[i+x];
			bl=bl*C-b[i]*t1+b[i+x];
		}
	}
	return ans;
}

int main(){
	int T;
	scanf("%d",&T);
	getchar();
	while (T--){
		gets(s1);
		gets(s);
		printf("%d\n",hash(s1,s));
	}
	return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: