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.
- if n >= count(0, M*,1) + count(M1,1, M1,*)
- toggle every column j such that M1,j = M1,1
- else
- toggle every column j such that M1,j ≠ M1,1
- for every row i:
- if Mi,1 = 1, toggle row i
- 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.