vote up 1 vote down star
1

Hi,

I'm hoping to optimize my backtracking algorithm for my Sudoku Solver.


What it does now:

The recursive solver function takes a sudoku puzzle with various given values.

I will scour through all the empty slots in the puzzle, looking for the slot that has the least possibilities, get the list of values.

From the list of values, I will loop through it, by placing one of the values from the list in the slot, and recursively solve it, until the entire grid is filled.


This implementation still takes incredibly long for some puzzles and I hope to further optimize this, does anyone have any ideas how I might be able to further optimize this?

Thanks!


Heres my code in Java if your interested.

public int[][] Solve(int[][] slots) {
    	// recursive solve v2 : optimization revision

    	int[] least = new int[3];
    	least[2] = Integer.MAX_VALUE;
    	PuzzleGenerator value_generator = new PuzzleGenerator();
    	LinkedList<Integer> least_values = null;

    	// 1: find a slot with the least possible solutions
    	// 2: recursively solve.

    	// 1 - scour through all slots.
    	int i = 0;
    	int j = 0;
    	while (i < 9) {
    		j = 0;
    		while (j < 9) {
    			if (slots[i][j] == 0) {
    				int[] grid_posi = { i, j };
    				LinkedList<Integer> possible_values = value_generator
    						.possibleValuesInGrid(grid_posi, slots);
    				if ((possible_values.size() < least[2])
    						&& (possible_values.size() != 0)) {
    					least[0] = i;
    					least[1] = j;
    					least[2] = possible_values.size();
    					least_values = possible_values;
    				}
    			}
    			j++;
    		}
    		i++;
    	}

    	// 2 - work on the slot
    	if (least_values != null) {
    		for (int x : least_values) {
    			int[][] tempslot = new int[9][9];
    			ArrayDeepCopy(slots, tempslot);
    			tempslot[least[0]][least[1]] = x;

    			/*ConsoleInterface printer = new gameplay.ConsoleInterface();
    			printer.printGrid(tempslot);*/

    			int[][] possible_sltn = Solve(tempslot);
    			if (noEmptySlots(possible_sltn)) {
    				System.out.println("Solved");
    				return possible_sltn;
    			}
    		}
    	}
    	if (this.noEmptySlots(slots)) {
    		System.out.println("Solved");
    		return slots;
    	}
    	slots[0][0] = 0;
    	return slots;
    }
flag

66% accept rate
1  
See also: stackoverflow.com/questions/1518335 – Jonathan Leffler Oct 5 at 5:30
Just as a comment on style, why use the 'i = 0; while (i < 9) { ++i; }' instead of 'for (i = 0 ; i < 9 ; ++i)'. The latter is more conventional and makes the code quicker to understand. – Skizz Oct 5 at 10:53
Just out of interest, how long is "incredibly long"? How fast does the program run for other puzzles? – Dan Dyer Oct 7 at 11:56

4 Answers

vote up 0 vote down

Do some constraint propagation before each nondeterministic step.

In practice this means that you have some rules which detect forced values and inserts them, and only if this doesn't make progress any more you resort to backtracking search through possible values.

Most Sudoku puzzles for humans are designed so that they don't need backtracking at all.

link|flag
In Artificial Intelligence - A modern approach (aima.cs.berkeley.edu) the chapter Contraint Satisfaction Problems shows you some effective techniques for backtracking. – lmsasu Oct 5 at 10:49
vote up 0 vote down

A while ago I implemented Donald Knuth's Dancing Links and his Algorithm X for Sudoku in Ruby (a language not known to be too efficient). For the few examples I checked, it took few milliseconds on my 1.5 GHz laptop.

You can look at the wikpedia how the Dancing Links work, and adapt it to Sudoku yourself. Or you take a look at "A Sudoku Solver in Java implementing Knuth’s Dancing Links Algorithm".

PS: Algorithm X is a backtracking algorithm.

link|flag
vote up 0 vote down

I think a big optimization would be to keep not only the state of the board, but for each row/col/square if it contains each of the numbers 1-9. Now to check if a position can have a number you simply need to check if the row/col/square the position is in don't contain that number (which is just 3 array lookups).

Also a big speed loss has to be making a new array for each recursive call. Instead of doing this make the change in the array before the recursive call, then undo it after the recursive call. Basically add the invariant that Solve will change slots while it runs, but when it returns it will leave it as it was when the function was called.

Also every time solve returns you have to check if the board is solved or not. If solve doesn't find a solution it should just return null, if it finds a solution it should return that. This way you can quickly test if your recursively call to solve found a solution or not.

Does placing a number in the square with the fewest options really help? Without that the code is a lot simpler (you don't have to save things in linked lists etc.)

Here is my psuedo code:

for(square on the board)
      for(possible value)
           if(this square can hold this value){
                place value on the board
                update that this row/col/square now contains this value

                recursive call
                if recursive call succeeded return the value from that call

                update that this row/col/square does not contain this value
                undo placing value on board
           }
if (no empty squares)
    return solved

Here is my code (I haven't tested it):

public int[][] solve(int[][] board, boolean[][] row, boolean[][] col, boolean[][] square){
	boolean noEmpty = true;
	for(int i = 0; i < 9;i++){
		for(int j = 0; j < 9;j++){
			if(board[i][j] == 0){
				noEmpty = false;
				for(int v = 1; v <= 9; v++){
					int sq = (i/3)*3+(j/3);
					if(row[i][v-1] == false && col[j][v-1] == false && square[sq][v-1] == false){
						board[i][j] = v;
						row[i][v-1] = true;
						col[j][v-1] = true;
						square[sq][v-1] = true;
						int[][] ans = solve(board,row,col,square);
						if(ans != null)
							return ans;
						square[sq][v-1] = false;
						col[j][v-1] = false;
						row[i][v-1] = false;
						board[i][j] = 9;
					}
				}
			}
		}
	}
	if(noEmpty){
		int[][] ans = new int[9][9];
		for(int i = 0; i < 9;i++)
			for(int j = 0; j < 9;j++)
				ans[i][j] = board[i][j];
		return ans;
	}else{
		return null;
	}		
}
link|flag
vote up -1 vote down

You should probably use a profiler to see which statement is taking the most time, and then think about how to optimize that.

Without using a profiler, my suggestion is that you're creating a new PuzzleGenerator from scratch each time, and passing slots as an argument to the possibleValuesInGrid method. I think that means that PuzzleGenerator is recalculating everything from scratch each time, for each position and for each slots configuration; whereas instead it might be [much] more efficient if it remembered previous results and changed incrementally.

link|flag
It varies from puzzle to puzzle. What is slow is choosing the right slot to start from. Right now I use the slot that has the least possibilities, it has some improvements from transversing from left-right, top to bottom, but it still is not ideal. – nubela Oct 5 at 5:31
I'm guessing that it's the possibleValuesInGrid method that's expensive: that it probes each of the 16 cells on the same row and column as the passed-in position: and that the program might be much quicker if this were just a lookup. – ChrisW Oct 5 at 5:39
possibleValuesInGrid method runs in constant time (almost), it is indeed the bruteforce recursive trying of values that makes this run superbly long. Thanks for your input tho :) – nubela Oct 5 at 6:10
Yes it's constant, I was just guessing that it could be nearly 16 times faster. – ChrisW Oct 5 at 6:17

Your Answer

Get an OpenID
or

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