[LeetCode] Image Overlap 图像重叠
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 <= A.length = A[0].length = B.length = B[0].length <= 30
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 图像重叠的更多相关文章
- [LeetCode] Rectangle Overlap 矩形重叠
A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bot ...
- Java实现 LeetCode 835 图像重叠(暴力)
835. 图像重叠 给出两个图像 A 和 B ,A 和 B 为大小相同的二维正方形矩阵.(并且为二进制矩阵,只包含0和1). 我们转换其中一个图像,向左,右,上,或下滑动任何数量的单位,并把它放在另一 ...
- [Swift]LeetCode835. 图像重叠 | Image Overlap
Two images A and B are given, represented as binary, square matrices of the same size. (A binary ma ...
- [LeetCode] Non-overlapping Intervals 非重叠区间
Given a collection of intervals, find the minimum number of intervals you need to remove to make the ...
- Leetcode 832.翻转图像
1.题目描述 给定一个二进制矩阵 A,我们想先水平翻转图像,然后反转图像并返回结果. 水平翻转图片就是将图片的每一行都进行翻转,即逆序.例如,水平翻转 [1, 1, 0] 的结果是 [0, 1, 1] ...
- leetcode 签到 836. 矩形重叠
836. 矩形重叠 矩形以列表 [x1, y1, x2, y2] 的形式表示,其中 (x1, y1) 为左下角的坐标,(x2, y2) 是右上角的坐标. 如果相交的面积为正,则称两矩形重叠.需要明确的 ...
- LeetCode - Rectangle Overlap
A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bot ...
- 836. Rectangle Overlap 矩形重叠
[抄题]: A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of i ...
- LeetCode 733: 图像渲染 flood-fill
题目: 有一幅以二维整数数组表示的图画,每一个整数表示该图画的像素值大小,数值在 0 到 65535 之间. An image is represented by a 2-D array of int ...
随机推荐
- shell利用mysql表项的icmp检测
作者:邓聪聪 利用mysql的表项记录IP地址和对应状态 +----+-----------------+--------+--------+ | id | ip_host | desc | stat ...
- 《Linux就该这么学》 - 必读的红帽系统与红帽linux认证自学手册
<Linux就该这么学> 本书作者刘遄从事于linux运维技术行业,较早时因兴趣的驱使接触到了Linux系统并开始学习. 已在2012年考下红帽工程师RHCE_6,今年又分别考下RHC ...
- @RunWith注解作用
@RunWith就是一个运行器 @RunWith(JUnit4.class)就是指用JUnit4来运行 @RunWith(SpringJUnit4ClassRunner.class),让测试运行于Sp ...
- (转)Java语法----Java中equals和==的区别
转载地址:https://www.cnblogs.com/smyhvae/p/3929585.html 一.java当中的数据类型和“==”的含义: 基本数据类型(也称原始数据类型) :byte,sh ...
- js之词法作用域与动态作用域
事实上JavaScript并不具有动态作用域,它只有词法作用域,简单明了,但是this机制某种程度上很像动态作用域 词法作用域:是一套引擎如何寻找变量以及会在何处找到变量的规则,它是定义在词法阶段的作 ...
- OpenStack—nova组件计算服务
nova介绍: Nova 是 OpenStack 最核心的服务,负责维护和管理云环境的计算资源.OpenStack 作为 IaaS 的云操作系统,虚拟机生命周期管理也就是通过 Nova 来实现的. 用 ...
- 《剑指offer》和为S的连续正数序列
本题来自<剑指offer> 反转链表 题目: 思路: C++ Code: Python Code: 总结:
- 2018-2019-2 网络对抗技术 20165314 Exp4 恶意代码分析
一.原理与实践说明 1.实践目标 监控你自己系统的运行状态,看有没有可疑的程序在运行. 分析一个恶意软件,就分析Exp2或Exp3中生成后门软件:分析工具尽量使用原生指令或sysinternals,s ...
- pip 源
pip使用过程中的痛苦,大家相必都已经知道了,目前豆瓣提供了国内的pypi源,源包相对会略有延迟,但不影响基本使用. pip install some-package -i https://pypi. ...
- apache atlas源码编译打包 centos
参考:https://atlas.apache.org/InstallationSteps.html https://blog.csdn.net/lingbo229/article/details/8 ...