当前位置:网站首页>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;} 边栏推荐
- linux定时执行sql文件[通俗易懂]
- Usage of placeholder function in Tensorflow
- 编程语言中,取余和取模的区别
- In programming languages, the difference between remainder and modulo
- Problems with compiling SIP with QGIS
- SecureCRT 设置超时自动断开连接时长
- 编程时请选择正确的输入法,严格区分中英文
- Word怎么设置图片衬于文字下方?两种方法教你设置Word图片衬于文字下方
- Daily practice of PMP | Do not get lost in the exam -8.8 (including agility + multiple choice)
- unit test
猜你喜欢

Word第一页空白页怎么删除?删除Word第一页空白页方法教程

ACM MM 2022 | Cloud2Sketch: Painting with clouds in the sky, AI brush strokes

CVPR22 Oral|通过多尺度token聚合分流自注意力,代码已开源

fixed investment fund

abstract class or interface

FS4066耐高压1到4节内置MOS的锂电池充电管理芯片

4D Summary: 38 Knowledge Points of Distributed Systems
6个规则去净化你的代码

筑牢安全防线 鹤壁经济技术开发区开展安全生产培训

Word怎么设置图片衬于文字下方?两种方法教你设置Word图片衬于文字下方
随机推荐
CVPR22 Oral|通过多尺度token聚合分流自注意力,代码已开源
自监督学习 —— MoCo v2
The overall construction process of the Tensorflow model
Problems with compiling SIP with QGIS
Endpoint mode for NetCore routing
简单问题窥见数学
Word文档怎么输入无穷大符号∞
Reinforcement Learning Weekly Issue 57: DL-DRL, FedDRL & Deep VULMAN
Excel如何打出正负号?Excel打出正负号的方法
The round functions in the np, ceil function and floor function
AI Knows Everything: Building and Deploying a Sign Language Recognition System from Zero
[corctf 2022] section
Word第一页不要页眉怎么设置?设置Word首页不要页眉方法教程
Synchronization lock synchronized traces the source
TF使用constant生成数据
FS4066耐高压1到4节内置MOS的锂电池充电管理芯片
ACM MM 2022 | Cloud2Sketch: Painting with clouds in the sky, AI brush strokes
PMP每日一练 | 考试不迷路-8.9(包含敏捷+多选)
QGIS编译SIP的问题
浅谈Numpy中的shape、reshape函数的区别