给定××二进制矩阵,计算可以在行或列中形成一个或多个相同值的集合的数量。
例子:
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个,总集合为2 u – 1 + 2 v –1。然后遍历所有列并计算相同的值并计算总和。我们最终从总和中减去了mxn,因为单个元素被考虑了两次。
CPP
// CPP program to compute number of sets
// in a binary matrix.
#include
using namespace std;
const int m = 3; // no of columns
const int n = 2; // no of rows
// function to calculate the number of
// non empty sets of cell
long long countSets(int a[n][m])
{
// stores the final answer
long long res = 0;
// traverses row-wise
for (int i = 0; i < n; i++)
{
int u = 0, v = 0;
for (int j = 0; j < m; j++)
a[i][j] ? u++ : v++;
res += pow(2,u)-1 + pow(2,v)-1;
}
// traverses column wise
for (int i = 0; i < m; i++)
{
int u = 0, v = 0;
for (int j = 0; j < n; j++)
a[j][i] ? u++ : v++;
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.
int main() {
int a[][3] = {(1, 0, 1),
(0, 1, 0)};
cout << countSets(a);
return 0;
}
Java
// Java program to compute number of sets
// in a binary matrix.
class GFG {
static final int m = 3; // no of columns
static final int n = 2; // no of rows
// function to calculate the number of
// non empty sets of cell
static long countSets(int a[][]) {
// stores the final answer
long res = 0;
// traverses row-wise
for (int i = 0; i < n; i++) {
int u = 0, v = 0;
for (int j = 0; j < m; j++) {
if (a[i][j] == 1)
u++;
else
v++;
}
res += Math.pow(2, u) - 1 + Math.pow(2, v) - 1;
}
// traverses column wise
for (int i = 0; i < m; i++) {
int u = 0, v = 0;
for (int j = 0; j < n; j++) {
if (a[j][i] == 1)
u++;
else
v++;
}
res += Math.pow(2, u) - 1 + Math.pow(2, v) - 1;
}
// at the end subtract n*m as no of
// single sets have been added twice.
return res - (n * m);
}
// Driver code
public static void main(String[] args) {
int a[][] = {{1, 0, 1}, {0, 1, 0}};
System.out.print(countSets(a));
}
}
// This code is contributed by Anant Agarwal.
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 conributed by shubhamsingh10
C#
// C# program to compute number of
// sets in a binary matrix.
using System;
class GFG {
static int m = 3; // no of columns
static int n = 2; // no of rows
// function to calculate the number of
// non empty sets of cell
static long countSets(int [,]a)
{
// stores the final answer
long res = 0;
// Traverses row-wise
for (int i = 0; i < n; i++)
{
int u = 0, v = 0;
for (int j = 0; j < m; j++)
{
if (a[i,j] == 1)
u++;
else
v++;
}
res += (long)(Math.Pow(2, u) - 1
+ Math.Pow(2, v)) - 1;
}
// Traverses column wise
for (int i = 0; i < m; i++)
{
int u = 0, v = 0;
for (int j = 0; j < n; j++)
{
if (a[j,i] == 1)
u++;
else
v++;
}
res += (long)(Math.Pow(2, u) - 1
+ Math.Pow(2, v)) - 1;
}
// at the end subtract n*m as no of
// single sets have been added twice.
return res - (n * m);
}
// Driver code
public static void Main()
{
int [,]a = {{1, 0, 1}, {0, 1, 0}};
Console.WriteLine(countSets(a));
}
}
// This code is contributed by vt_m.
PHP
Javascript
输出:
8