AcWing 841. 字符串哈希
原题链接
简单
作者:
wangyj
,
2020-10-17 11:29:10
,
所有人可见
,
阅读 277
#include<iostream>
#include<algorithm>
using namespace std;
typedef unsigned long long ull;
char a[100010];
ull h[100010],p[100010];
ull get(int l,int r)
{
return h[r]-h[l-1]*p[r-l+1];
}
int main()
{
int n,m,i,l1,l2,r1,r2;
scanf("%d%d%s",&n,&m,a+1);
p[0]=1;
for(i=1;i<=n;i++)h[i]=h[i-1]*131+a[i],p[i]=p[i-1]*131;
while(m--){
scanf("%d%d%d%d",&l1,&r1,&l2,&r2);
if(get(l1,r1)==get(l2,r2))printf("Yes\n");
else printf("No\n");
}
return 0;
}