当前位置:网站首页>String hashing (2014 SERC J question)
String hashing (2014 SERC J question)
2022-08-09 23:14:00 【Here_SDUT】
Concept
For a string s = c_{n-1}c_{n-2}…c_0, we can treat it as a p base number,Its decimal representation x = c_{n-1} * p^{n-1} + c_{n-2} * p^{n-2} … + c_0 * p^0 ,Use x to map the string s, usually p = 131 or p = 13331 will cause the least chance of conflict, the hash value x is usually defined as unsigned long long, allowing it to overflow naturally to achieve the purpose of mod 2^{64}.
Some basic operations on string hashing are given below:
Calculate the hash value of string s:
unsigned long long Hash = 0, p = 131;for(int i = 0; i < n; i++) {Hash = Hash*p + s[i];}The leftmost character is removed from the string s, and the hash value of s is known as Hash:
Hash = Hash - s[0] * pow(p,m-1);Example
2014 SERC J The Big Painting
Title
Give you two graphics p and m, the size is h_pw_ph_mw_m allows you to find a total of several p graphics in m.
Analysis
This question uses two-dimensional hash. For the first small pattern, first hash each line as a string, and then use the hash value of each line as a character to form a column of strings and then hash it again to getThe key value is used to map this two-dimensional graph.Similarly, in a large graph, use mp[i][j] to represent the string of length w_p at line i and jThe hash value of , and then use ha[i][j] to represent the hash of the graph whose size is h_p * w_p at the i line jvalue.
Code
#include #define LL long long#define ull unsigned long longusing namespace std;const int maxn = 1e5 + 10;const int inf = 0x3f3f3f3f;const double PI = acos(-1.0);typedef pair PII;ull mp[2100][2100], key, pp[2100], p[2100], ha[2100][2100], p2[2100];char s[2100][2100];int main(int argc, char const *argv[]) {int n, m, n2, m2;char x;cin >> n >> m >> n2 >> m2;//Preprocess the powers of p1 and p2p[0] = 1;for (int i = 1; i <= 2010; i++) {p[i] = p[i - 1] * 131;}p2[0] = 1;for (int i = 1; i <= 2010; i++) {p2[i] = p2[i - 1] * 13331;}/ / Find the hash value of the small patternfor (int i = 1; i <= n; i++) {getchar();ull c = 0;for (int j = 1; j <= m; j++) {scanf("%c", &x);c = c * p[1] + x;}key = key * p2[1] + c;}for (int i = 1; i <= n2; i++) {getchar();for (int j = 1; j <= m2; j++) scanf("%c", &s[i][j]);}// find the hash value of each rowfor (int i = 1; i <= n2; i++) {for (int j = 1; j <= m2; j++) {if (j <= m) {//The first m characters form the first string, which is placed in mp[i][1]Chinamp[i][1] = mp[i][1] * p[1] + s[i][j];} else {mp[i][j - m + 1] =mp[i][j - m] * p[1] + s[i][j] - s[i][j - m] * p[m];}}}//Seek two-dimensional hashfor (int i = 1; i <= m2; i++) {for (int j = 1; j <= n2; j++) {if (j <= n) {ha[1][i] = ha[1][i] * p2[1] + mp[j][i];} else {ha[j - n + 1][i] =ha[j - n][i] * p2[1] + mp[j][i] - mp[j - n][i] * p2[n];}}}LL res = 0;for (int i = 1; i <= n2 - n + 1; i++) {for (int j = 1; j <= m2 - m + 1; j++) {if (ha[i][j] == key) res++;}}cout << res;return 0;} 边栏推荐
- 角度和弧度的相互换算
- leetcode: the Kth largest element in the array
- Jensen (琴生) 不等式
- 论文解读(DropEdge)《DropEdge: Towards Deep Graph Convolutional Networks on Node Classification》
- Word文档怎么输入无穷大符号∞
- How to Make Your Company Content GDPR Compliant
- 宝塔实测-搭建LightPicture开源图床系统
- 5个 Istio 访问外部服务流量控制最常用的例子,你知道几个?
- Puyuan Jingdian turned losses into profits in the first half of the year, and high-end products continued to develop!Are you optimistic about "Huawei" in the instrument industry?
- RHEL7系统修复rm -rf /boot /etc/fstab
猜你喜欢
随机推荐
埃氏筛选法:统计素数个数
C语言中的文件是什么?
How to Make Your Company Content GDPR Compliant
抽象类 or 接口
Hessian Matrix 海森矩阵
TF生成均匀分布的tensor
MySQL慢查询的多个原因
场效应管Mosfet之雷卯Leiditech对应英飞凌Infineon
PMP每日一练 | 考试不迷路-8.8(包含敏捷+多选)
Skywalking系列学习之Trace Profiling源码分析
凸集与凸函数
Puyuan Jingdian turned losses into profits in the first half of the year, and high-end products continued to develop!Are you optimistic about "Huawei" in the instrument industry?
【云原生】4.2 DevOps 精讲篇
【测试】语句覆盖,判定覆盖,条件覆盖,路径覆盖
Jensen (琴生) 不等式
[Implementation of the interface for adding, deleting, checking, and modifying a double-linked list]
LeetCode26: remove duplicates in sorted array
laravel table migration error [easy to understand]
小黑leetcode之旅:94. 二叉树的中序遍历(补充Morris 中序遍历)
supervisor 命令操作大全「建议收藏」

![[corctf 2022] 部分](/img/03/ee1ead55805a2ac690ec79c675c3e6.png)






