AcWing 138. 兔子与兔子
原题链接
简单
作者:
光在黑暗中发亮
,
2019-08-14 10:26:18
,
所有人可见
,
阅读 904
C++ 代码
#include <iostream>
using namespace std;
const int N=1000010;
unsigned long long f[N],h[N];
int main()
{
int m;
string DNA;
cin>>DNA>>m;
h[0]=1;
for(int i=DNA.length();i>0;i--)
DNA[i]=DNA[i-1];
for(int i=1;i<=DNA.length();i++)
{
f[i]=f[i-1]*131+(DNA[i]-'a'+1);
h[i]=h[i-1]*131;
}
while(m--)
{
int l1,l2,r1,r2;
cin>>l1>>r1>>l2>>r2;
if(f[r1]-f[l1-1]*h[r1-l1+1]==f[r2]-f[l2-1]*h[r2-l2+1])
cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
return 0;
}