Checking 2-dimensional array (like eight queens puzzle) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:07:16Z http://stackoverflow.com/feeds/question/384874 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/384874/checking-2-dimensional-array-like-eight-queens-puzzle 2 Checking 2-dimensional array (like eight queens puzzle) Murzyn1 2008-12-21T20:00:55Z 2008-12-22T04:33:25Z <p>My problem is very similar to eight queens puzzle.</p> <p>I've got 2-dimensional array (N x N) that for example, looks like this:</p> <pre><code>0,0,0,0,1 y 0,0,0,0,0 | 0,0,0,0,0 V 0,0,0,1,0 0,0,0,0,0 x-&gt; </code></pre> <p>I'm checking horizontally, vertically and diagonally for occurrences of 1</p> <pre><code>\,0,|,0,/ 0,\,|,/,0 -,-,1,-,- 0,/,|,\,0 /,0,|,0,\ </code></pre> <p>I'm thinking about storing only the (x,y) postions of "1"'s in a list </p> <pre><code>[[4,0],[3,3]] </code></pre> <p>and solving it mathematically, check every position of "1" with another (x1,y1)&lt;->(x2,y2),</p> <p>if <code>x1 == x2</code> or <code>y1 == y2</code> <code>we have a collision!</code> if not check:</p> <pre><code>x2 == x1 + z; y2 == y1 + z; x2 == x1 - z; y2 == y1 - z; </code></pre> <p>(???)</p> <p>where z is +/- that <code>( x1+z in 0..N ) and ( y1+z in 0..N ) .......</code></p> <p><strong><em>My problem is checking for diagonal collision, is there a better way to do it???</em></strong></p> http://stackoverflow.com/questions/384874/checking-2-dimensional-array-like-eight-queens-puzzle/384887#384887 11 Answer by dF for Checking 2-dimensional array (like eight queens puzzle) dF 2008-12-21T20:10:32Z 2008-12-21T20:10:32Z <p>One possible solution:</p> <pre><code>def collision(x1, y1, x2, y2): return x1 == x2 or y1 == y2 or abs(x1-x2) == abs(y1-y2) </code></pre> <p>i.e. there is a collision if the two points are on the same horizontal row, same vertical row or same diagonal (vertical distance == horizontal distance).</p> http://stackoverflow.com/questions/384874/checking-2-dimensional-array-like-eight-queens-puzzle/384908#384908 0 Answer by gs for Checking 2-dimensional array (like eight queens puzzle) gs 2008-12-21T20:31:52Z 2008-12-21T21:10:33Z <p>I think it would be much faster if you didn't solve it mathematically but first check all rows for multiple occurrences of 1s, then all columns and finally all diagonal lines.</p> <p>Here is some code to test the diagonal lines in a simple way. (It's JavaScript, sorry!)</p> <pre><code>var count = 0; for (column = -n; column &lt; n; column++) { for (row = 0; row &lt; n; row++) { // conditions for which there are no valid coordinates. if (column + row &gt; 6) { break; } if (column &lt; 0) { continue; if (field[row][column] == 1) { count++; if (count == 2) break; // collision } } } </code></pre> <p>This method would have a complexity of <code>O(n^2)</code>, whereas the one you suggested has a complexity of <code>O(n^2 + k^2)</code> (k being the number of 1s) If <code>k</code> is always small this should be no problem.</p> http://stackoverflow.com/questions/384874/checking-2-dimensional-array-like-eight-queens-puzzle/384953#384953 2 Answer by Greg Hewgill for Checking 2-dimensional array (like eight queens puzzle) Greg Hewgill 2008-12-21T21:06:14Z 2008-12-21T21:06:14Z <p>Your description sounds like an instance of an exact cover problem, which can be solved using an algorithm Knuth calls <a href="http://en.wikipedia.org/wiki/Algorithm_X" rel="nofollow">Algorithm X</a>. I have implemented a <a href="http://hewgill.com/sudoku/" rel="nofollow">Sudoku solver in Javascript</a> using this technique. You can probably find implementations in Python, too.</p> http://stackoverflow.com/questions/384874/checking-2-dimensional-array-like-eight-queens-puzzle/385515#385515 0 Answer by recursive for Checking 2-dimensional array (like eight queens puzzle) recursive 2008-12-22T04:01:08Z 2008-12-22T04:03:31Z <p>Assuming you actually do have an N-dimensional space, which you probably don't, you can use this collision detector:</p> <pre><code>def collision(t1, t2): return len(set([abs(a-b) for a,b in zip(t1, t2)] + [0])) &lt;= 2 </code></pre> <p>Pass it a pair of tuples with whatever arity you like, and it will return true if the two points lie on any N-dimensional diagonal.</p>