leetcode 1582. Special Positions in a Binary Matrix(python)

该博客讨论了一个算法问题,即在给定的二维矩阵中找出特殊位置的数量。特殊位置是指矩阵中值为1的元素,其所在行和列的所有其他元素均为0。通过计算每一行和每一列的和,然后遍历矩阵找到满足条件的特殊位置,最终得出结果。文章提供了Python代码实现,并展示了不同输入矩阵的例子和运行效率。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

描述

Given a rows x cols matrix mat, where mat[i][j] is either 0 or 1, return the number of special positions in mat.

A position (i,j) is called special if mat[i][j] == 1 and all other elements in row i and column j are 0 (rows and columns are 0-indexed).

Example 1:

Input: mat = [[1,0,0],
              [0,0,1],
              [1,0,0]]
Output: 1
Explanation: (1,2) is a special position because mat[1][2] == 1 and all other elements in row 1 and column 2 are 0.

Example 2:

Input: mat = [[1,0,0],
              [0,1,0],
              [0,0,1]]
Output: 3
Explanation: (0,0), (1,1) and (2,2) are special positions. 

Example 3:

Input: mat = [[0,0,0,1],
              [1,0,0,0],
              [0,1,1,0],
              [0,0,0,0]]
Output: 2

Example 4:

Input: 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]]
Output: 3

Note:

rows == mat.length
cols == mat[i].length
1 <= rows, cols <= 100
mat[i][j] is 0 or 1.

解析

根据题意,就是要找出 mat 中的特殊数字有几个。特殊数字就是必须为 1 且所在的行和列其他位置都为 0 。直接使用内置函数,计算出来水平和垂直两个方向的和 h 和 v ,然后遍历 mat 中的元素,只要该元素为 1 且所在行和列的元素和为 1 ,那就将结果 result 加一,遍历结束即可得到结果。

解答

class Solution(object):
    def numSpecial(self, mat):
        """
        :type mat: List[List[int]]
        :rtype: int
        """
        import numpy as np
        mat = np.array(mat)
        v = np.sum(mat,0)
        h = np.sum(mat,1)
        result = 0
        for i in range(len(mat)):
            if h[i]!=1:
                continue
            for j in range(len(mat[0])):
                if mat[i][j]==1 and v[j]==1 and h[i]==1:
                    result += 1
                    break
        return result

运行结果

Runtime: 184 ms, faster than 20.65% of Python online submissions for Special Positions in a Binary Matrix.
Memory Usage: 26 MB, less than 5.43% of Python online submissions for Special Positions in a Binary Matrix.

原题链接:https://leetcode.com/problems/special-positions-in-a-binary-matrix/

您的支持是我最大的动力

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

王大丫丫

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值