码迷,mamicode.com
首页 > 其他好文 > 详细

CHOI 1401 兔子与兔子

时间:2018-12-24 13:51:23      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:scanf   div   color   clu   def   hide   scan   hid   for   

字符串hash,注意hash是关键字!

技术分享图片
#include<bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
const int N=1000005;
const ull k=10007;
char a[N];
ull ha[N],p[N];
int main(){
    scanf("%s",a+1);
    int m,len=strlen(a+1);
    p[0]=1;
    for(int i=1;i<=len;++i){
        ha[i]=(ull)ha[i-1]*k+a[i]-a+1;
        p[i]=(ull)p[i-1]*k;
    }
    scanf("%d",&m);
    for(int i=1;i<=m;++i){
        int l1,r1,l2,r2;
        scanf("%d%d%d%d",&l1,&r1,&l2,&r2);
        if(ha[r1]-ha[l1-1]*p[r1-l1+1]==ha[r2]-ha[l2-1]*p[r2-l2+1])puts("Yes");
        else puts("No");
    }
    return 0;
}
View Code

 

CHOI 1401 兔子与兔子

标签:scanf   div   color   clu   def   hide   scan   hid   for   

原文地址:https://www.cnblogs.com/Dream-Runner/p/10168104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!