欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

字符串hash模板

程序员文章站 2022-07-15 14:18:24
...

思想:把字符串转换为P进制数。用ull存储,溢出相当于取模
作用:O(1)查询两个子串是否相等。
一般P为131或13331

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
typedef unsigned long long ull;
const int N = 1e5+10 , P = 131;
ull p[N],h[N];
char s[N];
ull get(int l,int r)
{
    return h[r]-h[l-1]*p[r-l+1];
}
int main()
{
    int n,m;
    scanf("%d%d",&n,&m);
    scanf("%s",s+1);
    p[0]=1;
    for(int i=1;i<=n;i++)
    {
        p[i]=p[i-1]*P;
        h[i]=h[i-1]*P+s[i];
    }
    while(m--)
    {
        int l1,r1,l2,r2;
        scanf("%d%d%d%d",&l1,&r1,&l2,&r2);
        if(get(l1,r1)==get(l2,r2))
            printf("Yes\n");
        else
            printf("No\n");
    }
    return 0;
}

上一篇: [模板]字符串hash

下一篇: 闭包12.17