当前位置: 代码迷 >> 综合 >> Leetcode 1253. Reconstruct a 2-Row Binary Matrix
  详细解决方案

Leetcode 1253. Reconstruct a 2-Row Binary Matrix

热度:24   发布时间:2023-12-12 21:04:12.0

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Reconstruct a 2-Row Binary Matrix

2. Solution

**解析:**Version 1,由于是二值矩阵且只有两行,因此根据列的和来设置两行的值。

  • Version 1
class Solution:def reconstructMatrix(self, upper: int, lower: int, colsum: List[int]) -> List[List[int]]:n = len(colsum)matrix = [[0] * n, [0] * n]for i in range(n):if colsum[i] == 2:matrix[0][i] = 1matrix[1][i] = 1upper -= 1lower -= 1elif colsum[i] == 1:if upper > lower:matrix[0][i] = 1upper -=1else:matrix[1][i] = 1lower -=1if upper == 0 and lower == 0:return matrixreturn []

Reference

  1. https://leetcode.com/problems/reconstruct-a-2-row-binary-matrix/
  相关解决方案