Take full advantage of rating of Binary Matrix by Turning a row or column each time

Enhance Post

Conserve Post

Like Post

Enhance Post

Conserve Post

Like Post

Offered a Binary matrix of size MxN, the job is to take full advantage of ball game of Matrix by making any variety of relocations (consisting of absolutely no relocations), such that,

  • every row is analyzed as a Binary Number, and
  • the rating of the matrix is the amount of these binary numbers.
  • A relocation is specified as picking any row or column and toggling/flipping each worth because row or column (i.e., toggling all 0’s to 1’s, and visa-versa).

Examples:

Input: grid = [[0,1,1,1],
[1,0,0,0],
[1,1,0,0]]

Output: 41

Description: After making relocations as displayed in the image listed below, the last rating will be 1111 + 1111 + 1011 = 15 + 15 + 11 = 41.

matrix-score-flipping-(1)

Input: grid = [[0]]
Output: 1
Description: 0b1 = 1.

Technique: We can fix this issue efficiently utilizing the concept that

To make worth big its MSB need to constantly be ‘1’. So we will make grid[i][0] = 1 for every single row [ i=0…n-1].

  • Now we will pass through from delegated best and look for every column for the count of 1’s and 0’s and if any point we have no. of 0’s higher than 1’s we will toggle that column to make 1’s >>= 0’s.
  • In the end, we will determine the last rating.

Below is the application of the above technique:

C++

// C++ implimentation of above concept
#include && lt; bits/stdc++. h&& gt;
utilizing namespace sexually transmitted disease;

// function to toggle the entire column void flipCol( int col, vector&& lt; vector & lt; int&& gt; & gt; & amp; grid).
{for( int j= 0; j & lt; grid.size();
j++) {
grid[j][col] ^= 1;.}
}// function to toggle the entire row. void flipRow( int&row, vector & lt; vector & lt; int & gt; & gt; &
amp; grid). {
for( int i= 0; i
& lt; grid(*
).

size(); i++) {grid(*&) ^= 1 &;&.
}
} int matrixScore( vector & lt; vector & lt; int & gt; & gt; & amp; grid). {
int n = grid.size ();. int m= grid[0]
size();.
// MSB must be 1 of 0th column
.
// to get the optimum worth. for (int i =0; i & lt; n; i++ ){if( grid [row][i] &== 0) {
flipRow( i, grid);.
}}// cheacking which column has more 0's than 1's.// and toggling them.
for (int j =0; j
& lt; m; j++)
{&. int nos= 0;.
for( int i= 0; i
& lt; n; i++)
{
if (grid[0]= =0).
nos++;.
} if (nos & gt;( n- nos) ){
flipCol (j, grid &);.
}
}/ &/ Compute the response. int amount= 0;.
for( int i= 0
; i & lt; n; i+
+) {
for( int j= 0

; j & lt; m; j++) {
if( grid[i][0])
{
amount+=( 1LL & lt; & lt;( m - j - 1)); &.}}} return amount;.
}// Chauffeur Code. int primary() {int n, m;. n= 3;.

m = 4;. &vector & lt; vector & lt; int & gt; & gt
; grid = {
{0, &1, 1&, 1}
,.
{1, 0 &, 0,&0},. {1, 1, 0, 0}};. for( int i = 0; i & lt;&n; i
+ +) {for( int j = 0; j & lt; m; j + +) {cin & gt; & gt; grid[i][j];.}} cout & lt; & lt; & quot; Optimum Worth: & quot; & lt; & lt; matrixScore( grid) & lt; & lt; endl;.}[i][j] Time Intricacy: [i][j] O( N * M) 

Auxiliary Area Intricacy: O( 1)

Last Upgraded: 17 Jul, 2023

Like Post
Conserve Post

.

Like this post? Please share to your friends:
Leave a Reply

;-) :| :x :twisted: :smile: :shock: :sad: :roll: :razz: :oops: :o :mrgreen: :lol: :idea: :grin: :evil: :cry: :cool: :arrow: :???: :?: :!: