题目
给你一个大小为 rows x cols 的矩阵 mat,其中 mat[i][j] 是 0 或 1,请返回 矩阵 mat 中特殊位置的数目 。
特殊位置 定义:如果 mat[i][j] == 1 并且第 i 行和第 j 列中的所有其他元素均为 0(行和列的下标均 从 0 开始 ),则位置 (i, j) 被称为特殊位置。
示例 1:
输入:mat = [[1,0,0],
[0,0,1],
[1,0,0]]
输出:1
解释:(1,2) 是一个特殊位置,因为 mat[1][2] == 1 且所处的行和列上所有其他元素都是 0
示例 2:
输入:mat = [[1,0,0],
[0,1,0],
[0,0,1]]
输出:3
解释:(0,0), (1,1) 和 (2,2) 都是特殊位置
示例 3:
输入:mat = [[0,0,0,1],
[1,0,0,0],
[0,1,1,0],
[0,0,0,0]]
输出:2
示例 4:
输入:mat = [[0,0,0,0,0],
[1,0,0,0,0],
[0,1,0,0,0],
[0,0,1,0,0],
[0,0,0,1,1]]
输出:3
提示:
rows == mat.length
cols == mat[i].length
1 <= rows, cols <= 100
mat[i][j] 是 0 或 1
来源:力扣(LeetCode)
解题思路
这个题最简单的思路就是,对于每个为1的单元格,检查它的四个方向上是否存在1。
class Solution:def numSpecial(self, mat: List[List[int]]) -> int:def check(x,y):i=1while x-i>=0:if mat[x-i][y]:return Falsei+=1i=1while y-i>=0:if mat[x][y-i]:return Falsei+=1try:i=1while True:if mat[x+i][y]:return Falsei+=1except:try:i=1while True:if mat[x][y+i]:return Falsei+=1except:return Truecount=0for i in range(len(mat)):for j in range(len(mat[0])):if mat[i][j]:if check(i,j):count+=1return count