AcWing 841. 字符串哈希-C++
原题链接
简单
作者:
码
,
2020-06-22 00:12:08
,
所有人可见
,
阅读 612
#include<iostream>
using namespace std;
const int N=1e5+10;
char word[N],P=131;//p=13331
unsigned long long h[N],p[N];//h[N]哈希函数 p[N]=P的n次方
unsigned long long query(int l,int r)
{
return h[r]-h[l-1]*p[r-l+1];
}
int main()
{
int n,m;
cin>>n>>m;
cin>>word+1;
p[0]=1;
for(int i=1;i<=n;i++)
{
h[i]=h[i-1]*P+word[i];
p[i]=p[i-1]*P;
}
while(m--)
{
int l1,r1,l2,r2;
cin>>l1>>r1>>l2>>r2;
if(query(l1,r1)==query(l2,r2)) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
return 0;
}