AcWing 841. 字符串哈希
原题链接
简单
作者:
xiaoqi_
,
2021-04-17 17:53:05
,
所有人可见
,
阅读 262
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
typedef unsigned long long ULL;
const int N = 100010,P=131;
int n,m;
char str[N];
ULL h[N],p[N];
ULL get(int l,int r)
{
return h[r]-h[l-1]*p[r-l+1];
}
int main()
{
scanf("%d%d", &n, &m);
scanf("%s",str+1);
p[0]=1; //防止冲突
for(int i=1;i<=n;i++)
{
h[i]=h[i-1]*P+str[i]; //哈希前缀和
p[i]=p[i-1]*P; //计算每个位上的相应权值
}
while (m -- ){
int l1,r1,l2,r2;
scanf("%d%d%d%d",&l1,&r1,&l2,&r2);
if(get(l1,r1)==get(l2,r2)) puts("Yes");
else puts("No");
}
return 0;
}