标签:div i++ can 初始化 字符串hash strlen scanf class hash
初始化:
char s[N]; unsigned long long f[1000010],p[1000010]; scanf("%s",s+1); int n=strlen(s+1); p[0]=1;
计算:
for(int i=1;i<=n;i++) { f[i]=f[i-1]*131+(s[i]-‘a‘+1); p[i]=p[i-1]*131; }
读取哈希值:
int l,r; scanf("%d%d",&l,&r); f[r]-f[l-1]*p[r-l+1]//hash of l~r
标签:div i++ can 初始化 字符串hash strlen scanf class hash
原文地址:https://www.cnblogs.com/ChildeZhe/p/12209903.html