这题可以用语言特性卡过,string有个compare完美处理(-.-)
正解是字符串hash(可看 yxc的视频讲解 ),也给出代码
C++ 代码
#include<queue>
#include<bitset>
#include<cstring>
#include<iostream>
#include<cstdio>
#include<tr1/unordered_map>
#include<set>
#include<algorithm>
using namespace std;
using namespace tr1;
typedef long long ll;
const int N=1000000,inf=0x3f3f3f3f;
string s1,s2;
unordered_map<ll,string> m2;
int n,x1,x2,y1,y2;
int main(){
// freopen("123.txt","r",stdin);
cin>>s1;
//int compare(int pos, int n,const string &s,int pos2,int n2)const;
cin>>n;
while(n--){
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
if(s1.compare(x1-1,y1-x1+1,s1,x2-1,y2-x2+1)==0)printf("Yes\n");
else printf("No\n");
}
}
正解代码
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
typedef unsigned long long ULL;
const int N=1000005,base=131;
int n;
char str[N];
ULL p[N],h[N];
ULL get(int l,int r)
{
return h[r]-h[l-1]*p[r-l+1];
}
int main()
{
scanf("%s",str+1);
int len=strlen(str+1);
p[0]=1;
for(int i=1;i<=len;i++)
{
h[i]=h[i-1]*base+str[i]-'a'+1;
p[i]=p[i-1]*base;
}
cin>>n;
while(n--)
{
int x1,y1,x2,y2;
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
if(get(x1,y1)==get(x2,y2))puts("Yes");
else puts("No");
}
return 0;
}
事实证明STL还是慢啊
666
233333