vote up 3 vote down star
2

The 8-puzzle is a square board with 9 positions, filled by 8 numbered tiles and one gap. At any point, a tile adjacent to the gap can be moved into the gap, creating a new gap position. In other words the gap can be swapped with an adjacent (horizontally and vertically) tile. The objective in the game is to begin with an arbitrary configuration of tiles, and move them so as to get the numbered tiles arranged in ascending order either running around the perimeter of the board or ordered from left to right, with 1 in the top left-hand position.

8 puzzle

I was wondering what approach will be efficient to solve this problem?

flag

I'm not convinced that there is always a solution. Supposedly Erno Rubik (inventor of the Rubik’s cube) sold a 15-puzzle (4x4 grid) with the numbers 1 – 15, with numbers 14 and 15 swapped . He offered a substantial reward for those who could solve it. He, of course, knew it was impossible. – Eric Sep 8 at 18:37
3  
Are you reading thedailywtf.com/Articles/Sliding-Around.aspx/… by any chance? – voyager Sep 8 at 18:41
@Eric - Well, yes, it may be impossible if numbers were randomly pulled out and placed back in because it's moving in a way not possible in the solution. But, if the numbers were in order and then just mixed up (AKA, shifted around), then it is possible to "work backward" to solve the problem. I'm assuming this is a safe assumption to make here. I am curious, too, if there's an efficient solution. – Jason Sep 8 at 18:41
1  
Exactly half of all possible configurations have a solution. In effect, you can calculate a parity value that produces a zero or one for all configurations and simultaneously is preserved by all legal changes to the game board; half of all configurations have each parity value, and therefore configurations in one half cannot be changed to reach configurations in the other half. I don't have time to look up the details right now, though. You can always change between the two parity values by swapping two non-blank cells. – jprete Sep 8 at 20:50
1  
@eric legend has it that when sam loyd went to patent the 15 puzzle, the patent officer asked if it was solvable. when loyd admitted it was not, the officer said that in that case there could be no "working model", and hence no patent. – Martin DeMello Sep 10 at 15:15
show 3 more comments

4 Answers

vote up 8 vote down check

You can use the heuristic that is based on the positions of the numbers, that is the higher the overall sum of all the distances of each letter from its goal state is, the higher the heuristic value. Then you can implement A* search which can be proved to be the optimal search in terms of time and space complexity (provided the heuristic is monotonic and admissible.) http://en.wikipedia.org/wiki/A*_search_algorithm

link|flag
Yup, A* is much more suitable for this problem than IDDFS. IDDFS is about as fast as A* without any heuristic. But even the most simple heuristics improve the algorithm a lot. – Accipitridae Sep 9 at 3:19
@Accipitridae, IDDFS is not as fast as A* without any heuristic. It visits most nodes more than once whereas A* without heuristic only still visits nodes once and once only. – leiz Sep 9 at 9:32
vote up 3 vote down

Since the OP cannot post a picture, this is what he's talking about:

8 Puzzle - Initial State

As far as solving this puzzle, goes, take a look at the iterative deepening depth-first search algorithm, as made relevant to the 8-puzzle problem by this page.

link|flag
vote up 2 vote down

Donut's got it! IDDFS will do the trick, considering the relatively limited search space of this puzzle. It would be efficient hence respond to the OP's question. It would find the optimal solution, but not necessarily in optimal complexity.

Implementing IDDFS would be the more complicated part of this problem, I just want to suggest an simple approach to managing the board, the games rules etc. This in particular addresses a way to obtain initial states for the puzzle which are solvable. An hinted in the notes of the question, not all random assignemts of 9 tites (considering the empty slot a special tile), will yield a solvable puzzle. It is a matter of mathematical parity... So, here's a suggestions to model the game:

Make the list of all 3x3 permutation matrices which represent valid "moves" of the game. Such list is a subset of 3x3s w/ all zeros and two ones. Each matrix gets an ID which will be quite convenient to keep track of the moves, in the IDDFS search tree. An alternative to matrices, is to have two-tuples of the tile position numbers to swap, this may lead to faster implementation.

Such matrices can be used to create the initial puzzle state, starting with the "win" state, and running a arbitrary number of permutations selected at random. In addition to ensuring that the initial state is solvable this approach also provides a indicative number of moves with which a given puzzle can be solved.

Now let's just implement the IDDFS algo and [joke]return the assignement for an A+[/joke]...

link|flag
vote up 2 vote down

This is an example of the classical shortest path algorithm. You can read more about shortest path here and here (http://en.wikipedia.org/wiki/Dijkstra's_algorithm, hyperlink doesn't work because of the ').

In short, think of all possible states of the puzzle as of vertices in some graph. With each move you change states - so, each valid move represents an edge of the graph. Since moves don't have any cost, you may think of the cost of each move being 1. The following c++-like pseudo-code will work for this problem:

{
int[][] field = new int[3][3];
//  fill the input here
map<string, int> path;
queue<string> q;
put(field, 0); // we can get to the starting position in 0 turns
while (!q.empty()) {
    string v = q.poll();
    int[][] take = decode(v); 
    int time = path.get(v);
    if (isFinalPosition(take)) {
        return time;
    }
    for each valid move from take to int[][] newPosition {
        put(newPosition, time + 1);
    }
}
// no path
return -1;
}

void isFinalPosition(int[][] q) {
    return encode(q) == "123456780"; // 0 represents empty space
}
void put(int[][] position, int time) {
    string s = encode(newPosition);
    if (!path.contains(s)) {
        path.put(s, time);
    }
}

string encode(int[][] field) {
    string s = "";
    for (int i = 0; i < 3; i++) for (int j = 0; j < 3; j++) s += field[i][j];
    return s;
}

int[][] decode(string s) {
    int[][] ans = new int[3][3];
    for (int i = 0; i < 3; i++) for (int j = 0; j < 3; j++) field[i][j] = s[i * 3 + j];
    return ans;
}
link|flag
it can be shown that if A* search satisfies certain constraints, then it is equivalent to finding the shortest path ;) using dijkstra's algorithm – gmatt Sep 23 at 17:47

Your Answer

Get an OpenID
or

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