首页 > 其他 > 详细

LeetCode #1252. Cells with Odd Values in a Matrix

时间:2020-11-25 09:39:06      阅读:24      评论:0      收藏:0      [点我收藏+]

题目

1252. Cells with Odd Values in a Matrix


解题方法

先构造这么一个矩阵出来,在构造的过程中判断当前位置是否为奇数,如果是就把总数+1,如果不是就把总数-1,最后返回奇数的总数。
时间复杂度:O(L(m+n)),L是indices的长度
空间复杂度:O(m
n)


代码

class Solution:
    def oddCells(self, n: int, m: int, indices: List[List[int]]) -> int:
        matrix = [[0] * m for _ in range(n)]
        oddnum = 0
        
        for indice in indices:
            r = indice[0]
            c = indice[1]
            for i in range(n):
                matrix[i][c] += 1
                if matrix[i][c] % 2:
                    oddnum += 1
                else:
                    oddnum -= 1
            for i in range(m):
                matrix[r][i] += 1
                if matrix[r][i] % 2:
                    oddnum += 1
                else:
                    oddnum -= 1
        
        return oddnum

LeetCode #1252. Cells with Odd Values in a Matrix

原文:https://www.cnblogs.com/RatsCommander/p/14033944.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!