原文链接: https://leetcode-cn.com/problems/determine-whether-matrix-can-be-obtained-by-rotation
英文原文
Given two n x n
binary matrices mat
and target
, return true
if it is possible to make mat
equal to target
by rotating mat
in 90-degree increments, or false
otherwise.
Example 1:
Input: mat = [[0,1],[1,0]], target = [[1,0],[0,1]] Output: true Explanation: We can rotate mat 90 degrees clockwise to make mat equal target.
Example 2:
Input: mat = [[0,1],[1,1]], target = [[1,0],[0,1]] Output: false Explanation: It is impossible to make mat equal to target by rotating mat.
Example 3:
Input: mat = [[0,0,0],[0,1,0],[1,1,1]], target = [[1,1,1],[0,1,0],[0,0,0]] Output: true Explanation: We can rotate mat 90 degrees clockwise two times to make mat equal target.
Constraints:
n == mat.length == target.length
n == mat[i].length == target[i].length
1 <= n <= 10
mat[i][j]
andtarget[i][j]
are either0
or1
.
中文题目
给你两个大小为 n x n
的二进制矩阵 mat
和 target
。现 以 90 度顺时针轮转 矩阵 mat
中的元素 若干次 ,如果能够使 mat
与 target
一致,返回 true
;否则,返回 false
。
示例 1:
输入:mat = [[0,1],[1,0]], target = [[1,0],[0,1]] 输出:true 解释:顺时针轮转 90 度一次可以使 mat 和 target 一致。
示例 2:
输入:mat = [[0,1],[1,1]], target = [[1,0],[0,1]] 输出:false 解释:无法通过轮转矩阵中的元素使 equal 与 target 一致。
示例 3:
输入:mat = [[0,0,0],[0,1,0],[1,1,1]], target = [[1,1,1],[0,1,0],[0,0,0]] 输出:true 解释:顺时针轮转 90 度两次可以使 mat 和 target 一致。
提示:
n == mat.length == target.length
n == mat[i].length == target[i].length
1 <= n <= 10
mat[i][j]
和target[i][j]
不是0
就是1
通过代码
高赞题解
public boolean findRotation(int[][] mat, int[][] target) {
int n = mat.length;
boolean b1 = true,b2 = true,b3 = true,b4 = true;
for(int i = 0;i < n;i++){
for(int j = 0;j < n;j++){
//旋转90度
if(mat[n - j - 1][i] != target[i][j]){
b1 = false;
}
//旋转180度
if (mat[n - i - 1][n - j - 1] != target[i][j]){
b2 = false;
}
//旋转270度
if (mat[j][n- i- 1] != target[i][j]){
b3 = false;
}
//旋转360度
if (mat[i][j] != target[i][j]){
b4 = false;
}
}
}
return b1 || b2 || b3 || b4;
}
统计信息
通过次数 | 提交次数 | AC比率 |
---|---|---|
5686 | 9969 | 57.0% |
提交历史
提交时间 | 提交结果 | 执行时间 | 内存消耗 | 语言 |
---|