vote up 2 vote down star
1

My problem is very similar to eight queens puzzle.

I've got 2-dimensional array (N x N) that for example, looks like this:

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->

I'm checking horizontally, vertically and diagonally for occurrences of 1

\,0,|,0,/
0,\,|,/,0
-,-,1,-,-
0,/,|,\,0
/,0,|,0,\

I'm thinking about storing only the (x,y) postions of "1"'s in a list

[[4,0],[3,3]]

and solving it mathematically, check every position of "1" with another (x1,y1)<->(x2,y2),

if x1 == x2 or y1 == y2 we have a collision! if not check:

x2 == x1 + z;
y2 == y1 + z;
x2 == x1 - z;
y2 == y1 - z;

(???)

where z is +/- that ( x1+z in 0..N ) and ( y1+z in 0..N ) .......

My problem is checking for diagonal collision, is there a better way to do it???

flag

en.wikipedia.org/wiki/Eight_queens_puzzle – gs Dec 21 '08 at 20:15
do you mean 2- dimension array? – sergdev Dec 21 '08 at 21:10
You have a 2-dimensional square array of size N (so of size NxN); you do not have an N-dimensional array. – Jonathan Leffler Dec 21 '08 at 21:56

4 Answers

vote up 10 vote down check

One possible solution:

def collision(x1, y1, x2, y2):
    return x1 == x2 or y1 == y2 or abs(x1-x2) == abs(y1-y2)

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).

link|flag
I wish I had votes. This is a really good answer! However, wouldn't you want to find abs(dx) and abs(dy) instead? – strager Dec 21 '08 at 20:15
Thanks for VERY GOOD ANSWER! I haven't thought it would be so simple ;) Stupid me... I've managed to write a simple brute force checker using your collision function. Now I'm looking forward to check Algoritm X mentioned in another answer. – Murzyn1 Dec 22 '08 at 12:22
vote up 0 vote down

Assuming you actually do have an N-dimensional space, which you probably don't, you can use this collision detector:

def collision(t1, t2):
    return len(set([abs(a-b) for a,b in zip(t1, t2)] + [0])) <= 2

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.

link|flag
vote up 2 vote down

Your description sounds like an instance of an exact cover problem, which can be solved using an algorithm Knuth calls Algorithm X. I have implemented a Sudoku solver in Javascript using this technique. You can probably find implementations in Python, too.

link|flag
+1 . that's what i thought about first. but wasn't sure about it and haven't done anything with it so waited for a knowledgeable guy to vote him up. now found him :p – Johannes Schaub - litb Dec 21 '08 at 21:16
Made a simple brute force check, using collision function. Now, checking your method (looks complicated though)... Thanks! – Murzyn1 Dec 22 '08 at 12:24
vote up 0 vote down

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.

Here is some code to test the diagonal lines in a simple way. (It's JavaScript, sorry!)

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
            }
    }
}

This method would have a complexity of O(n^2), whereas the one you suggested has a complexity of O(n^2 + k^2) (k being the number of 1s) If k is always small this should be no problem.

link|flag
"My problem is checking for diagonal collision, is there a better way to do it???" -- He's not trying to solve the Eight Queens problem. He's simply checking for collision. @dF's method is O(1). – strager Dec 21 '08 at 20:41
My understanding is, that he checks if there is at least one collision, not if point (x,y) has a collision. dF's method is O(1), but only if you assume that the number of comparisons is static. – gs Dec 21 '08 at 20:53
Isn't k = N? So O(n^2+k^2) = O(2n^2) = O(n^2)? Certainly, in the 8 Queens problem, k = N. – Jonathan Leffler Dec 21 '08 at 21:59
No, k is the number of positions having a 1 in the array and n is the length of one side of the array. – gs Dec 22 '08 at 0:21

Your Answer

Get an OpenID
or

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