📌  相关文章
📜  用于计算二进制矩阵中 1 和 0 集合的Python程序

📅  最后修改于: 2022-05-13 01:55:36.299000             🧑  作者: Mango

用于计算二进制矩阵中 1 和 0 集合的Python程序

给定一个×m的二进制矩阵,计算一组可以在一行或一列中形成一个或多个相同值的集合的数量。
例子:

Input: 1 0 1
       0 1 0 
Output: 8 
Explanation: There are six one-element sets
(three 1s and three 0s). There are two two-
element sets, the first one consists of the
first and the third cells of the first row.
The second one consists of the first and the 
third cells of the second row. 

Input: 1 0
       1 1 
Output: 6

x 元素的非空子集的数量为 2 x – 1。我们遍历每一行并计算 1 和 0 单元格的数量。对于每 u 个零和 v 个 1,总集合为 2 u – 1 + 2 v – 1。然后我们遍历所有列并计算相同的值并计算总和。我们最终从总和中减去 mxn,因为单个元素被考虑了两次。

Python3
# Python3 program to compute number of sets
# in a binary matrix.
m = 3 # no of columns
n = 2 # no of rows
 
# function to calculate the number of
# non empty sets of cell
def countSets(a):
     
    # stores the final answer
    res = 0
     
    # traverses row-wise
    for i in range(n):
        u = 0
        v = 0
        for j in range(m):
            if a[i][j]:
                u += 1
            else:
                v += 1
        res += pow(2, u) - 1 + pow(2, v) - 1
     
    # traverses column wise
    for i in range(m):
         
        u = 0
        v = 0
        for j in range(n):
            if a[j][i]:
                u += 1
            else:
                v += 1
        res += pow(2, u) - 1 + pow(2, v) - 1
     
    # at the end subtract n*m as no of
    # single sets have been added twice.
    return res - (n*m)
 
# Driver program to test the above function.
a = [[1, 0, 1],[0, 1, 0]]
 
print(countSets(a))
 
# This code is contributed by shubhamsingh10


输出:
 

8

时间复杂度: O(n * m)
有关详细信息,请参阅有关在二进制矩阵中计数 1 和 0 集的完整文章!