首页 > 其他分享 >笔记:二维哈希

笔记:二维哈希

时间:2024-11-23 10:22:50浏览次数:8  
标签:哈希 int 笔记 二维 maxn len ull row

二维哈希

前置芝士

  • 哈希
  • 前缀和

教程

二维哈希

板子

P10474 BeiJing2011 Matrix 矩阵哈希 - 洛谷

代码

#include <bits/stdc++.h>
using namespace std;

typedef unsigned long long ull;
const ull RowBase = 131, ColBase = 1313;
const int maxn = 1005;
int n, m, a, b;
ull row[maxn], col[maxn];
ull matrix[maxn][maxn], submat[maxn][maxn];

inline void hashInit() {
    row[0] = col[0] = 1; //row:行基数,col:列基数;第 0 位初始化为 1
    for (int i = 1; i <= n; i++) { // row[i] 表示第 i 位的以 RowBase 为进制的基数
        row[i] = row[i - 1] * RowBase;
    }
    for (int i = 1; i <= m; i++) { // col[i] 表示第 i 位的以 ColBase 为进制的基数
        col[i] = col[i - 1] * ColBase;
    }
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= m; j++) { // 把每一行压缩成一个 RowBase 进制数
            matrix[i][j] = matrix[i][j] + matrix[i][j - 1] * RowBase;
        }
    }
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= m; j++) { // 把每一列压缩成一个 ColBase 进制数
            matrix[i][j] = matrix[i][j] + matrix[i - 1][j] * ColBase;
        }
    }
}

inline void initSubmat() {
    for (int i = 1; i <= a; i++) {
        for (int j = 1; j <= b; j++) {
            submat[i][j] = submat[i][j] + submat[i][j - 1] * RowBase;
        }
    }
    for (int i = 1; i <= a; i++) {
        for (int j = 1; j <= b; j++) {
            submat[i][j] = submat[i][j] + submat[i - 1][j] * ColBase;
        }
    }
}

// 重点内容,求 (x1, y1) 到 (x2, y2) 的哈希(前缀和)
inline ull calc(ull mat[][maxn], int _x1, int _y1, int _x2, int _y2) {
    ull res = mat[_x2][_y2];
    res -= mat[_x1 - 1][_y2] * col[_x2 - _x1 + 1]; // 乘上相应基数以对齐矩阵
    res -= mat[_x2][_y1 - 1] * row[_y2 - _y1 + 1];
    res += mat[_x1 - 1][_y1 - 1] * col[_x2 - _x1 + 1] * row[_y2 - _y1 + 1]; // 容斥原理
    return res;
}

inline bool check() {
    ull sub = calc(submat, 1, 1, a, b); // 查询矩阵的哈希
    for (int i = a; i <= n; i++) {
        for (int j = b; j <= m; j++) {
            if (calc(matrix, i - a + 1, j - b + 1, i, j) == sub) return true; // matrix 的子矩阵如果匹配到了就返回真
        }
    }
    return false; // 匹配不到
}

int main() {
    scanf("%d%d%d%d", &n, &m, &a, &b);
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= m; j++) {
            char ch;
            scanf(" %c", &ch);
            matrix[i][j] = ch - '0';
        }
    }
    hashInit(); // 哈希初始化
    int T;
    scanf("%d", &T);
    while (T--) {
        for (int i = 1; i <= a; i++) {
            for (int j = 1; j <= b; j++) {
                char ch;
                scanf(" %c", &ch);
                submat[i][j] = ch - '0';
            }
        }
        initSubmat();
        printf("%d\n", check());
    }
    return 0;
}

相关题目

P4398 JSOI2008 Blue Mary的战役地图 - 洛谷

这道题数据只有 \(50\),可以用 DP,复杂度 \(O(n^4)\),也可以用二维哈希。但是学校 OJ 给的数据范围是 \(500\),所以 DP 过不了,朴素的二维哈希解本题的复杂度为 \(O(n^3)\),也过不了。

我们发现如果两个方阵不存在长度为 \(k\) 相同的方阵,则不可能存在 \(\ge k\) 的方阵,如果存在,则有可能存在更大的,所以具有单调性,所以我们二分这个边长即可。复杂度 \(O(n^2 \log n)\)。

代码

#include <bits/stdc++.h>
using namespace std;

typedef unsigned long long ull;
const ull RowBase = 37, ColBase = 13;
const int maxn = 505;
int n;
ull row[maxn], col[maxn];
ull alpha[maxn][maxn], beta[maxn][maxn];

ull calc(ull mat[][maxn], int x, int y, int len) {
    return mat[x][y] - mat[x - len][y] * col[len] - mat[x][y - len] * row[len]
        + mat[x - len][y - len] * row[len] * col[len];
}

void getHash(ull mat[][maxn]) {
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            mat[i][j] = mat[i][j - 1] * RowBase + mat[i][j];
        }
    }
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            mat[i][j] = mat[i - 1][j] * ColBase + mat[i][j];
        }
    }
}

bool check(int len) {
    set<ull> exist;
    for (int i = len; i <= n; ++i) {
        for (int j = len; j <= n; ++j) {
            exist.insert(calc(alpha, i, j, len));
        }
    }
    for (int i = len; i <= n; ++i) {
        for (int j = len; j <= n; ++j) {
            if (exist.count(calc(beta, i, j, len))) {
                return true;
            }
        }
    }
    return false;
}

int main() {
    scanf("%d", &n);
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            scanf("%lld", &alpha[i][j]);
        }
    }
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            scanf("%lld", &beta[i][j]);
        }
    }
    row[0] = col[0] = 1;
    for (int i = 1; i <= n; ++i) {
        row[i] = row[i - 1] * RowBase;
    }
    for (int i = 1; i <= n; ++i) {
        col[i] = col[i - 1] * ColBase;
    }
    getHash(alpha);
    getHash(beta);
    int l = 1, r = n;
    while (l <= r) {
        int mid = (l + r) >> 1;
        if (check(mid)) l = mid + 1;
        else r = mid - 1;
    }
    if (check(l)) printf("%d\n", l);
    else printf("%d\n", r);
    return 0;
}

标签:哈希,int,笔记,二维,maxn,len,ull,row
From: https://www.cnblogs.com/jxyanglinus/p/18564185

相关文章

  • 笔记:二分图
    概念二分图:又称作二部图,设\(G=(V,E)\)是一个无向图,如果顶点集\(V\)可分割为两个互不相交的子集\(A,B\),并且图中的每条边\((u,v)\)所关联的两个顶点\(u,v\)分别属于这两个顶点集\((u\inA,v\inB)\),则称图\(G\)为一个二分图。也就是说一个图被划分成了两个......
  • Servlet -个人理解笔记
    Servlet的作用        Servlet主要是为了衔接web应用的前端和后端的,作为它们俩中间数据交换的桥梁,现在很多web项目都是前后端分离的,前端写前端的后端写后端的,但是他俩所用的编程语言是有区别的,怎么实现它们之间的数据交换呢?Servlet就是为了解决这个,它是用java编写的,目......
  • JavaWeb知识点总结 我的学习笔记
    JavaWeb我的学习笔记一、动态网页开发1.动态网页2.系统架构C/S架构B/S架构B/S与C/S的比较3.URL通信三要素4.Tomcat服务器二、Servlet1.Servlet简介2.Servlet快速入门入门样例执行原理3.Servlet的体系结构4.servlet的十大方法5.Servlet生命周期6.在web.xml中配置servl......
  • 一个可以调节笔记本亮度的程序
    在我这台笔记本上,当我把显示模式调为读显时发现右下角的亮度不能调了,就像这样 听说时nvidia显卡不适配的问题咱也不知道呀于是我就用java写了程序来调节,用了俩个多月,没啥问题的打开就是这样拉动直接就可以调节源码importjavax.swing.*;importjavax.swing.event.Cha......
  • Linux笔记---Makefile的简单用法
    1.什么是MakefileMakefile是一种用于自动化构建和管理项目的工具,特别是在软件开发中非常常见。它包含了一系列规则(rules)和指令,描述了如何编译和链接源代码文件,以及生成最终的可执行文件或库文件。简单来说,在系统中存在一个叫做make的命令,该命令被使用之后,会在当前目录下......
  • Spring学习笔记_10-@Component
    @Component1.介绍在项目开发过程中,我们自己编写的类如果想注入到Spring中,由Spring来管理Bean的生命周期,就可以使用@Component注解将其注入到IOC容器中。@Component注解还有三个衍生注解,那就是@Repository、@Service和@Controller注解,并且衍生出的注解通常会在使用MVC架构开......
  • Spring学习笔记_09——Environment
    Environment1.介绍Spring框架中的Environment是一个非常重要的概念,它提供了访问当前运行环境配置的API。Environment是一个接口,它包含了多个方法,用于获取配置参数、设置默认配置源、激活特定的配置文件等。在Spring应用中,Environment实例通常被注入到需要访问配置信息的......
  • 职业技能大赛—物联网应用开发赛项(Ubuntun_Linux)精华笔记 (03)
    MySQL中的show各种查看命令介绍//全局变量在MySQL启动的时候由服务器自动将它们初始化为默认值,这些默认值可以通过更改my.ini这个文件来更改。//MySQL中的show各种查看命令介绍是必须了解的Mysql基础操作还请您认真看下去 1.使用show查看showtables或showtablesfrom......
  • Oracle+11g+笔记(8)-备份与恢复机制
    Oracle+11g+笔记(8)-备份与恢复机制8、备份与恢复机制8.1备份与恢复的方法数据库的备份是对数据库信息的一种操作系统备份。这些信息可能是数据库的物理结构文件,也可能是某一部分数据。在数据库正常运行时,就应该考虑到数据库可能出现故障,而对数据库实施有效的备份,保证......
  • 2024年韩顺平老师Python教程保姆级笔记
    代码获取:https://github.com/qingxuly/hsp_python_coursePython语言描述Python转义字符Python常用的转义字符转义字符说明\t制表符,实现对齐的功能\n换行符,\\一个\\"一个"\'一个'\r一个回车代码演示#\t制表符print("jack\t20")​#\n换行print("Hello,jack......