Counting sets of 1s and 0s in a binary matrix Last Updated : 18 Sep, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report Given n × m binary matrix, count the number of sets where a set can be formed one or more same values in a row or column. Examples: 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 The number of non-empty subsets of x elements is 2x - 1. We traverse every row and calculate numbers of 1’s and 0’s cells. For every u zeros and v ones, total sets is 2u - 1 + 2v - 1. We then traverse all columns and compute same values and compute overall sum. We finally subtract m x n from the overall sum as single elements are considered twice. Implementation: CPP // CPP program to compute number of sets // in a binary matrix. #include <bits/stdc++.h> 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 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 += 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++) { if (a[j][i] == 1) u++; else 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. import java.util.*; 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 contributed 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 <?php // PHP program to compute // number of sets // in a binary matrix. // no of columns $m = 3; // no of rows $n = 2; // function to calculate the number // of non empty sets of cell function countSets($a) { global $m, $n; // stores the final answer $res = 0; // traverses row-wise for ($i = 0; $i < $n; $i++) { $u = 0; $v = 0; for ( $j = 0; $j < $m; $j++) $a[$i][$j] ? $u++ : $v++; $res += pow(2, $u) - 1 + pow(2, $v) - 1; } // traverses column wise for ($i = 0; $i < $m; $i++) { $u = 0;$v = 0; for ($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 Code $a = array(array(1, 0, 1), array(0, 1, 0)); echo countSets($a); // This code is contributed by anuj_67. ?> JavaScript <script> // javascript program to compute number of sets // in a binary matrix. var m = 3; // no of columns var n = 2; // no of rows // function to calculate the number of // non empty sets of cell function countSets(a) { // stores the final answer var res = 0; // traverses row-wise for (i = 0; i < n; i++) { var u = 0, v = 0; for (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 (i = 0; i < m; i++) { var u = 0, v = 0; for (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 var a = [ [ 1, 0, 1 ], [ 0, 1, 0 ] ]; document.write(countSets(a)); // This code is contributed by Rajput-Ji </script> Output8 Time Complexity: O(N*M), as we are using nested loops to traverse N*M times.Auxiliary Space: O(1), as we are not using any extra space. Comment More infoAdvertise with us Next Article Counting sets of 1s and 0s in a binary matrix S Striver Improve Article Tags : Misc Combinatorial Matrix DSA Practice Tags : CombinatorialMatrixMisc Similar Reads DSA Tutorial - Learn Data Structures and Algorithms DSA (Data Structures and Algorithms) is the study of organizing data efficiently using data structures like arrays, stacks, and trees, paired with step-by-step procedures (or algorithms) to solve problems effectively. Data structures manage how data is stored and accessed, while algorithms focus on 7 min read Quick Sort QuickSort is a sorting algorithm based on the Divide and Conquer that picks an element as a pivot and partitions the given array around the picked pivot by placing the pivot in its correct position in the sorted array. It works on the principle of divide and conquer, breaking down the problem into s 12 min read Merge Sort - Data Structure and Algorithms Tutorials Merge sort is a popular sorting algorithm known for its efficiency and stability. It follows the divide-and-conquer approach. It works by recursively dividing the input array into two halves, recursively sorting the two halves and finally merging them back together to obtain the sorted array. Merge 14 min read SQL Commands | DDL, DQL, DML, DCL and TCL Commands SQL commands are crucial for managing databases effectively. These commands are divided into categories such as Data Definition Language (DDL), Data Manipulation Language (DML), Data Control Language (DCL), Data Query Language (DQL), and Transaction Control Language (TCL). In this article, we will e 7 min read Data Structures Tutorial Data structures are the fundamental building blocks of computer programming. They define how data is organized, stored, and manipulated within a program. Understanding data structures is very important for developing efficient and effective algorithms. What is Data Structure?A data structure is a st 2 min read Bubble Sort Algorithm Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity are quite high.We sort the array using multiple passes. After the fir 8 min read Breadth First Search or BFS for a Graph Given a undirected graph represented by an adjacency list adj, where each adj[i] represents the list of vertices connected to vertex i. Perform a Breadth First Search (BFS) traversal starting from vertex 0, visiting vertices from left to right according to the adjacency list, and return a list conta 15+ min read Binary Search Algorithm - Iterative and Recursive Implementation Binary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Binary Search AlgorithmConditions to apply Binary Searc 15 min read Insertion Sort Algorithm Insertion sort is a simple sorting algorithm that works by iteratively inserting each element of an unsorted list into its correct position in a sorted portion of the list. It is like sorting playing cards in your hands. You split the cards into two groups: the sorted cards and the unsorted cards. T 9 min read Array Data Structure Guide In this article, we introduce array, implementation in different popular languages, its basic operations and commonly seen problems / interview questions. An array stores items (in case of C/C++ and Java Primitive Arrays) or their references (in case of Python, JS, Java Non-Primitive) at contiguous 4 min read Like