字符串哈希
Posted 最爱小崔同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串哈希相关的知识,希望对你有一定的参考价值。
#include<iostream>
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%s",&n,&m,str+1);
p[0]=1;
for(int i=1;i<=n;i++)
p[i]=p[i-1]*P;
h[i]=h[i-1]*P+str[i];
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;
以上是关于字符串哈希的主要内容,如果未能解决你的问题,请参考以下文章