Two images A and B are given, represented as binary, square matrices of the same size.  (A binary matrix has only 0s and 1s as values.)

We translate one image however we choose (sliding it left, right, up, or down any number of units), and place it on top of the other image.  After, the overlap of this translation is the number of positions that have a 1 in both images.

(Note also that a translation does not include any kind of rotation.)

What is the largest possible overlap?

Example 1:

Input: A = [[1,1,0],
[0,1,0],
  [0,1,0]]
  B = [[0,0,0],
  [0,1,1],
  [0,0,1]]
Output: 3
Explanation: We slide A to right by 1 unit and down by 1 unit.

Notes:

  1. 1 <= A.length = A[0].length = B.length = B[0].length <= 30
  2. 0 <= A[i][j], B[i][j] <= 1
 

这道题给了我们两个用大小相同的二维数组表示的图像,里面只有0或1,问我们经过任意平移后,能产生的最大重叠是多少,这里只计算值为1的重叠。给的例子中,我们只要将图像A向右和向下平移一位,就能得到3个重叠。那么首先来思考 brute force 的方法,对于一个 nxn 大小的数组,其实其能平移的情况是有限的,水平和竖直方向分别有n种移动方式,那么总共有 nxn 种移动方法,那么我们只要对于每种移动方式后,都计算一下重叠的个数,那么就一定可以找出最大值来。需要注意的是,A和B分别都需要移动 nxn 次,我们可以使用一个子函数来专门统计重叠个数,需要传入横向纵向的平移量 rowOffset 和 colOffset,那么只需让其中一个数组减去偏移量后跟另一个数组对应位置的值相乘,由于只有0和1,若相乘为1的话,就说明有重叠,直接累加即可,参见代码如下:

解法一:

class Solution {
public:
int largestOverlap(vector<vector<int>>& A, vector<vector<int>>& B) {
int res = , n = A.size();
for (int i = ; i < n; ++i) {
for (int j = ; j < n; ++j) {
res = max(res, max(count(A, B, i, j), count(B, A, i, j)));
}
}
return res;
}
int count(vector<vector<int>>& A, vector<vector<int>>& B, int rowOffset, int colOffset) {
int sum = , n = A.size();
for (int i = rowOffset; i < n; ++i) {
for (int j = colOffset; j < n; ++j) {
sum += A[i][j] * B[i - rowOffset][j - colOffset];
}
}
return sum;
}
};

我们还可以换一种思路,由于只有值为1的地方才有可能重叠,所以我们只关心A和B中值为1的地方,将其坐标位置分别存入两个数组 listA 和 listB 中。由于对于A和B中的任意两个1的位置,肯定有一种方法能将A平移到B,平移的方法就是横向平移其横坐标之差,竖向平移其纵坐标之差。由于其是一一对应关系,所以只要是横纵坐标差相同的两对儿位置,一定是在同一次平移上。那么我们就需要一个 HashMap 来建立坐标差值和其出现次数之间的映射,为了降维,将横纵坐标之差转为字符串,然后中加上个横杠分隔开,这样只要组成了相同的字符串,那么一定就是在同一个平移上,计数器自增1。最后在 HashMap 中找到最大的值即可,参见代码如下:

解法二:

class Solution {
public:
int largestOverlap(vector<vector<int>>& A, vector<vector<int>>& B) {
int res = , n = A.size();
vector<vector<int>> listA, listB;
unordered_map<string, int> diffCnt;
for (int i = ; i < n; ++i) {
for (int j = ; j < n; ++j) {
if (A[i][j] == ) listA.push_back({i, j});
if (B[i][j] == ) listB.push_back({i, j});
}
}
for (auto a : listA) {
for (auto b : listB) {
++diffCnt[to_string(a[] - b[]) + "-" + to_string(a[] - b[])];
}
}
for (auto diff : diffCnt) {
res = max(res, diff.second);
}
return res;
}
};

我们可以优化一下空间,可以将二维坐标加码成一个数字,一般的做法都是将 (i, j) 变成 i*n + j,但是这道题却不行,因为我们算横纵坐标的差值时想直接相减,这种加码方式会使得横纵坐标之间互相干扰。由于题目中给了n的范围,不会超过 30,所以我们可以给横坐标乘以 100,再加上纵坐标,即 i*100 + j,这种加码方式万无一失。然后还是要用 HashMap 来建立坐标差值和其出现次数之间的映射,不过这次就简单多了,不用转字符串了,直接用数字相减即可,最后返回 HashMap 中最大的统计数,参见代码如下:

解法三:

class Solution {
public:
int largestOverlap(vector<vector<int>>& A, vector<vector<int>>& B) {
int res = , n = A.size();
vector<int> listA, listB;
unordered_map<int, int> diffCnt;
for (int i = ; i < n * n; ++i) {
if (A[i / n][i % n] == ) listA.push_back(i / n * + i % n);
if (B[i / n][i % n] == ) listB.push_back(i / n * + i % n);
}
for (int a : listA) {
for (int b : listB) {
++diffCnt[a - b];
}
}
for (auto diff : diffCnt) {
res = max(res, diff.second);
}
return res;
}
};

Github 同步地址:

https://github.com/grandyang/leetcode/issues/835

参考资料:

https://leetcode.com/problems/image-overlap/

https://leetcode.com/problems/image-overlap/discuss/177485/Java-Easy-Logic

https://leetcode.com/problems/image-overlap/discuss/130623/C%2B%2BJavaPython-Straight-Forward

https://leetcode.com/problems/image-overlap/discuss/138976/A-generic-and-easy-to-understand-method

[LeetCode] Image Overlap 图像重叠的更多相关文章

  1. [LeetCode] Rectangle Overlap 矩形重叠

    A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bot ...

  2. Java实现 LeetCode 835 图像重叠(暴力)

    835. 图像重叠 给出两个图像 A 和 B ,A 和 B 为大小相同的二维正方形矩阵.(并且为二进制矩阵,只包含0和1). 我们转换其中一个图像,向左,右,上,或下滑动任何数量的单位,并把它放在另一 ...

  3. [Swift]LeetCode835. 图像重叠 | Image Overlap

    Two images A and B are given, represented as binary, square matrices of the same size.  (A binary ma ...

  4. [LeetCode] Non-overlapping Intervals 非重叠区间

    Given a collection of intervals, find the minimum number of intervals you need to remove to make the ...

  5. Leetcode 832.翻转图像

    1.题目描述 给定一个二进制矩阵 A,我们想先水平翻转图像,然后反转图像并返回结果. 水平翻转图片就是将图片的每一行都进行翻转,即逆序.例如,水平翻转 [1, 1, 0] 的结果是 [0, 1, 1] ...

  6. leetcode 签到 836. 矩形重叠

    836. 矩形重叠 矩形以列表 [x1, y1, x2, y2] 的形式表示,其中 (x1, y1) 为左下角的坐标,(x2, y2) 是右上角的坐标. 如果相交的面积为正,则称两矩形重叠.需要明确的 ...

  7. LeetCode - Rectangle Overlap

    A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bot ...

  8. 836. Rectangle Overlap 矩形重叠

    [抄题]: A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of i ...

  9. LeetCode 733: 图像渲染 flood-fill

    题目: 有一幅以二维整数数组表示的图画,每一个整数表示该图画的像素值大小,数值在 0 到 65535 之间. An image is represented by a 2-D array of int ...

随机推荐

  1. Python Django-入门到进阶

    web应用 Python-web应用 +HTTP协议 +web框架 第二篇:Djangon简介 Diango 框架起步 Python-Django基础 第三篇:路由控制 Python-Django 路 ...

  2. jupyter4.4.0自定义目录

    百度是有技巧的,现在百度的基本上都是2年前的帖子,对于最新的版本都不适用 对于jupyter自定义目录都是修改配置文件,这个对于jupyter4.4.0不适用: 1.在桌面创建jupyter-note ...

  3. JpaManytoMany

    package com.allqj.calculator.entity; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; i ...

  4. 2018-2019-2 网络对抗技术 20165323 Exp2 后门原理与实践

    2018-2019-2 网络对抗技术 20165323 Exp2 后门原理与实践 一.实验要求 (3.5分) (1)使用netcat获取主机操作Shell,cron启动 (0.5分) (2)使用soc ...

  5. zookeeper(1)-简单介绍

    参考:  https://www.cnblogs.com/wuxl360/p/5817471.html   zookeeper集群搭建 zookeeper集群原理和搭建 zookeeper集群搭建3 ...

  6. 我的Python笔记04

    摘要: 声明:本文整理借鉴金角大王的Python之路,Day4 - Python基础4 (new版)   本节内容 迭代器&生成器 装饰器 Json & pickle 数据序列化 软件 ...

  7. 2018-2019 20165239 Exip MSF基础应用

    实践内容(3.5分) 本实践目标是掌握metasploit的基本应用方式,重点常用的三种攻击方式的思路.具体需要完成: 1.1一个主动攻击实践,如ms08_067; (1分) 1.2 一个针对浏览器的 ...

  8. Spring基础知识备案

    关于@Value注解不能为静态变量赋值的问题 // eg:(xxx.ooo.value=100) 以下这种方式,来自配置文件的属性值无法注入: public class XxxUtils { @Val ...

  9. 第二次作业-熟悉git

    GIT地址 https://github.com/gentlemanzq/yunsuanhomework GIT用户名  gentlemanzq 学号后五位  62320 博客地址 https://w ...

  10. 微服务框架——SpringCloud(四)

    1.Spring Cloud Config 分布式配置 a.Config服务器 ①新建springboot项目,依赖选择Config Server ②pom文件关键依赖 <parent> ...