博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[模板] 字符串hash
阅读量:5025 次
发布时间:2019-06-12

本文共 1209 字,大约阅读时间需要 4 分钟。

单模数 (80)

#include 
#include
#include
#define mod 19260817#define MAXN 10005#define base 131char str[1505];unsigned long long h[MAXN];inline unsigned long long hash(){ int len = strlen(str); unsigned long long ans = 0; for(register int i=0;i

自然溢出 AC

#include 
#include
#include
#define MAXN 10005#define base 131 unsigned long long h[MAXN];char str[1505];inline unsigned long long hash(){ int len = strlen(str); unsigned long long ans = 0; for(register int i=0;i

大模数 AC

#include 
#include
#include
#define mod 212370440130137957ll#define MAXN 10005#define base 131char str[1505];unsigned long long h[MAXN];inline unsigned long long hash(){ int len = strlen(str); unsigned long long ans = 0; for(register int i=0;i

双hash AC

#include 
#include
#include
#define mod1 19260817#define mod2 19660813#define MAXN 10005#define base 131char str[1505];struct Node{ unsigned long long a,b;}h[MAXN];int N;inline bool cmp(Node x,Node y){return x.a

转载于:https://www.cnblogs.com/Neworld2002/p/8536926.html

你可能感兴趣的文章
VMware虚拟机下Linux系统的全屏显示
查看>>
net core体系-web应用程序-4asp.net core2.0 项目实战(任务管理系统)-2项目搭建
查看>>
高效的jQuery
查看>>
ubuntu 16.04 (软件应用)-输入法
查看>>
windos7修复引导扇区
查看>>
Leetcode总结之Backtracking
查看>>
Android开发学习之路-图片颜色获取器开发(1)
查看>>
StackExchange.Redis 官方文档(一) Basics
查看>>
nupkg 之破解 nodejs+electron-packager 打包exe的解包
查看>>
Objective-C 使用 C++类
查看>>
浅谈之高级查询over(partition by)
查看>>
Notes: CRM Analytics–BI from a CRM perspective (2)
查看>>
graphite custom functions
查看>>
列出所有的属性键
查看>>
js获取请求地址后面带的参数
查看>>
[原创]使用java批量修改文件编码(ANSI-->UTF-8)
查看>>
设计模式のCompositePattern(组合模式)----结构模式
查看>>
二进制集合枚举子集
查看>>
磁盘管理
查看>>
SAS学习经验总结分享:篇二—input语句
查看>>