当前位置:网站首页>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;}
边栏推荐
猜你喜欢
Skywalking系列学习之Trace Profiling源码分析
同步锁synchronized追本溯源
PMP每日一练 | 考试不迷路-8.9(包含敏捷+多选)
Don't tell me to play, I'm taking the PMP exam: what you need to know about choosing an institution for the PMP exam
SQL语句及索引的优化
微软word怎么转换成pdf文件?微软word转换为pdf格式的方法
必看设计干货|易知微设计师是怎么做标准可视化设计服务的?
Problems with compiling SIP with QGIS
POWER SOURCE ETA埃塔电源维修FHG24SX-U概述
abstract class or interface
随机推荐
【stack】【queue】【priority_queue】【deque】详解
Daily practice of PMP | Do not get lost in the exam -8.8 (including agility + multiple choice)
技术分享 | 接口自动化测试之JSON Schema模式该如何使用?
ACM MM 2022 | Cloud2Sketch: Painting with clouds in the sky, AI brush strokes
Tensorflow中placeholder函数的用法
Bean life cycle
角度和弧度的相互换算
微软Excel表格点击单元格行和列都显示颜色怎么弄?聚光灯效果设置
编译原理之文法
random.normal() and random.truncated_normal() in TF
Word第一页空白页怎么删除?删除Word第一页空白页方法教程
Hessian Matrix 海森矩阵
LoRa Basics无线通信技术和应用案例详解
TF中random.normal()与random.truncated_normal()
[corctf 2022] section
Pagoda measurement - building LightPicture open source map bed system
[Implementation of the interface for adding, deleting, checking, and modifying a double-linked list]
抽象类 or 接口
PHP 二维数组根据某个字段排序
ACM MM 2022 | Cloud2Sketch: 长空云作画,AI笔生花