vote up 5 vote down star
2

Give an algorithm for the following problem-

We have an N X N array of 0's and 1's. Each row and column can be toggled. Toggling a row toggles all the bits in the row, same for columns. Give an algorithm that can change the entire array into 0's in the minimum number of toggles, and if it is not possible, return -1.

flag

1  
When you say toggle, do you mean that toggling a row containing 10111001 would produce 01000110? – Michael Dillon Nov 7 at 13:51
@Michael - Yes, thats right. – Pranav Nov 7 at 13:52
Is this a question or only a curiosity? – Nathan Campos Nov 7 at 13:52
3  
duplicate: stackoverflow.com/questions/1310590/… – Nick D Nov 7 at 14:06
1  
Pranav, it's a duplicate of the question Nick posted above. Unfortunately the last person to select the 'close reason' wasn't very bright and selected a dumb reason, and - since there's a SO bug which uses only the last reason selected even if other people selected something different - that's what gets displayed on the question. – Peter Boughton Nov 7 at 14:35
show 4 more comments

closed as not a real question by blowdart, thephpdeveloper, coobird, JRL, adatapost Nov 7 at 14:30

3 Answers

vote up 2 vote down check

We'll either be eliminating all 1s or all 0s from the first row by toggling columns. If the original matrix had a solution, all rows will now be either all 1s or all 0s.

We can figure out how many rows will need to be toggled based on the number of 1s or 0s in column 1 and in row 1. That information will help us decide whether to eliminate 1s or 0s from the first row.

  1. if n >= count(0, M*,1) + count(M1,1, M1,*)
    1. toggle every column j such that M1,j = M1,1
  2. else
    1. toggle every column j such that M1,j ≠ M1,1
  3. for every row i:
    1. if Mi,1 = 1, toggle row i
    2. if row i has a 1, return -1

Informal proof (more explanation, really): Note that toggles commute (proof is simple but messy). Since, for a given sequence of toggles, transposing two steps will result in the same matrix, we can order the sequence so that all column toggles happen before row toggles. This also implies that, in a minimal sequence, we will toggle each row and column at most once.

Since we can perform all column toggles before row toggles, a solution must, after toggling columns, leave each row either all 1s or all 0s. From that point in the algorithm, eliminating 1s and detecting insoluble problems is obvious.

There are two possible routes to a solution when we toggle columns first: toggling 1s in the first row or toggling 0s. Equivalently, the options are to toggle or not toggle the first column. If column 1 will be toggled, the count of 0s in this column gives the number of rows that will be toggled; let r be this number (r=count(0, col1)). Furthermore, every column that starts with symbol M1,1 (and only those columns) will need to be toggled; the number of columns starting with M1,1 is thus equal to the number of column toggles. Let c be that number (c=count(M1,1, row1)), for a total of c+r toggles. In the opposing case, we don't toggle the first column, in which case the number of row toggles r' equals the number of 1s in the first column:

r' = count(1, col1) = N - count(0, col1)

The number of column toggles c' is the number of columns that don't start with symbol M1,1:

c' = count(! M1,1, row1) = N - count(M1,1, row1))

Thus c' + r' = 2N-c-r. Toggling the first column leads to a minimal solution iff 2N-c-r >= c+r or, equivalently, N >= c+r.

link|flag
So neat it's hard to believe. The property can be proved by induction on the list of toggles used to arrive from the empty configuration to an arbitrary configuration. – Pascal Cuoq Nov 7 at 14:20
I have an intuitive proof (still fleshing it out) and I still barely believe it. – outis Nov 7 at 14:22
1  
since the question has been listed as a duplicate, and this answer (which followed a few minutes behind) is the winning one from that thread,... I find it less impressive. Apologies if you actually came up with this yourself – reinier Nov 7 at 14:24
Simultaneous invention. My solution arose from my observation that "the order in which you toggle doesn't matter." – outis Nov 7 at 14:43
vote up 2 vote down

Brute-force answer: use Dijksta's shortest path algorithm in the graph where nodes are configurations and edges are toggles. Start from the initial configuration and explore until you arrive to the empty configuration.

This solution does not use at all the specific properties of the problem. For instance, applying toggles is commutative, which will be taken into account in Dijstra's algorithm (many paths converging to the same configuration) but would be used as a first-class property in a more mathematical approach.

link|flag
This could work. However, how will we find if there is no path between the 2 configurations? – Pranav Nov 7 at 14:22
@Pranav Ah, that's when we exhaust all reachable configurations. Fortunately outis's answer and the duplicate question at stackoverflow.com/questions/1310590/… show that there aren't too many of these (linear in number of rows + number of columns). – Pascal Cuoq Nov 7 at 14:26
vote up 2 vote down

This can be written as linear equation over GF(2), and solved for instance with Gaussian Elimination

GF(2) is the set {0,1} with operations + and *, where + is the exclusive or function, and * is the logical and function.

If we represent that state of the array as vector of bits called a, and the set of toggled columns and rows as a bit vector t, where 1 indicates that the column or row is toggled, and 0 that it is not, it is easy to see that a is a linear function of t:

a = M * t + a0

Where M is the matrix showing which elements in the original array are modified when a column or row is toggled, and a0 is the initial state of that array.

Therefore, we only need to solve that linear equation for t.

Gaussian elimination is an algorithm to solve any linear equation. Therefore, it can be used to solve this one. When doing so, keep in mind that the symbols + and * have been redefined above.

I got to go for now. Feel free to take over where I left of, or to wait for my return.

Edit: Toggling columns until the first row is all zero, and then toggling the rows sound like what you get by applying Gaussian elimination in this instance.

link|flag
3  
could you elaborate? – reinier Nov 7 at 13:57
I am with reinier here. I don't see how viewing the problem as a system of equations produces the list of toggles to apply to switch off all cells, and I'm eager to understand. – Pascal Cuoq Nov 7 at 14:07
@meriton Thanks for fleshing out, I understood what you meant when I realized that the order in which toggles were applied didn't matter (and that toggling twice of course had no effect). – Pascal Cuoq Nov 7 at 14:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.