Checking 2-dimensional array (like eight queens puzzle) - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T14:07:16Zhttp://stackoverflow.com/feeds/question/384874http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/384874/checking-2-dimensional-array-like-eight-queens-puzzle2Checking 2-dimensional array (like eight queens puzzle) Murzyn12008-12-21T20:00:55Z2008-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->
</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)<->(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#38488711Answer by dF for Checking 2-dimensional array (like eight queens puzzle) dF2008-12-21T20:10:32Z2008-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#3849080Answer by gs for Checking 2-dimensional array (like eight queens puzzle) gs2008-12-21T20:31:52Z2008-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 < n; column++) {
for (row = 0; row < n; row++) {
// conditions for which there are no valid coordinates.
if (column + row > 6) {
break;
}
if (column < 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#3849532Answer by Greg Hewgill for Checking 2-dimensional array (like eight queens puzzle) Greg Hewgill2008-12-21T21:06:14Z2008-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#3855150Answer by recursive for Checking 2-dimensional array (like eight queens puzzle) recursive2008-12-22T04:01:08Z2008-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])) <= 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>