How regular is to generate sudoku with difficulty 9+ SE?

Everything about Sudoku that doesn't fit in one of the other sections

How regular is to generate sudoku with difficulty 9+ SE?

Postby Morgoth » Mon Mar 19, 2007 1:58 pm

I'm using two methods to generate puzzles - actually this is one method, but in the second case I have added a brute force method. I needed to find whether the brute force helps at all, so I just removed it and generated 500000 puzzles this weekend.

To generate a sudoku without brute force usually takes about 120 miliseconds - I want to keep this way, as it looks fast enough, but I'm not sure whether it can generate puzzles with difficulty 10+.

The result from the weekend is:
SE 9.2
000010060000300000043000700000000000289004050006927000400200500802000690030080000

SE 9.1
060010000005003470000007062400002910500061003007000000000800050000030800890000000
080000090000000400000060071000200019006009004009007053005400000970001000400302000
000040700800600000000000052000000506002700004010065090000004000073010200000070039
020190000010000000500720000000008061004050000060000402003570008006000700000000094

So, is this normal? Should I generate several milions to find one 10+?
I don't use any patterns and symetry - everything is random.
Morgoth
 
Posts: 20
Joined: 06 December 2005

Re: How regular is to generate sudoku with difficulty 9+ SE?

Postby m_b_metcalf » Mon Mar 19, 2007 2:22 pm

Morgoth wrote:I don't use any patterns and symetry - everything is random.

As you will see in the hardest sudokus thread, there is a lot of empirical evidence for the most difficult puzzles having a large fraction of their clues aligned on diagonals.

Regards,

Mike Metcalf
User avatar
m_b_metcalf
2017 Supporter
 
Posts: 13583
Joined: 15 May 2006
Location: Berlin

Re: How regular is to generate sudoku with difficulty 9+ SE?

Postby ronk » Mon Mar 19, 2007 2:42 pm

m_b_metcalf wrote:there is a lot of empirical evidence for the most difficult puzzles having a large fraction of their clues aligned on diagonals.

There is also empirical evidence that any permuted puzzle has approximately the same difficulty as the original -- suggesting the clues need not be on the diagonals. So I think it's just the preferred form.
ronk
2012 Supporter
 
Posts: 4764
Joined: 02 November 2005
Location: Southeastern USA

Re: How regular is to generate sudoku with difficulty 9+ SE?

Postby ravel » Mon Mar 19, 2007 3:38 pm

Morgoth wrote:So, is this normal? Should I generate several milions to find one 10+?
I don't use any patterns and symetry - everything is random.
I made a similar test last year, when i created a million random sudokus. The hardest i found there had ER 9.1. It is very unprobable, that you will find a 10+ puzzle in some (maybe 100's of) millions of randomly generated sudokus.

The hardest puzzles dml and Ocean found (see here) all follow tso's rule of thumb, i.e. (in my words) no box contains more than one given in each minirow and minicolumn (with an arbitrarily chosen pattern following this rule i found two 9.9 puzzles out of 300000). Additionally they have 21 givens and at most one number is repeated in the bands or stacks (3 boxes in a line).

On the other hand Mauricio and Mike Metcalf found extremely hard puzzles, that are highly symmetrical. This symmetry can be diagonal or rotational (with full symmetry each number then always has the same "partner" number in the mirrored cell). You can find them here.

You might always try a rule like this: no empty cell should "see" more than 6 givens.
ravel
 
Posts: 998
Joined: 21 February 2006

Re: How regular is to generate sudoku with difficulty 9+ SE?

Postby Morgoth » Tue Mar 20, 2007 6:29 am

Mike, empirically you can prove only that something exists, but not that something doesn't:)
It is completely possible that some day, somebody with enough computer power will generate several billions random puzzles and one of them will break all records.

ravel, 10x a lot - that was I need. I had some doubts whether my algorithm is not technically restricted, as it doesn't use brute force.
I don't like the idea for symmetry, but the rule "no empty cell should "see" more than 6 givens" looks interesting - I may try it.

Besides, I really think about the idea to generate 100 millions:) - we have several multi-CPU test systems, which are usually free during the weekends.
Morgoth
 
Posts: 20
Joined: 06 December 2005

Re: How regular is to generate sudoku with difficulty 9+ SE?

Postby wapati » Tue Mar 20, 2007 8:21 am

Morgoth wrote:Besides, I really think about the idea to generate 100 millions:) - we have several multi-CPU test systems, which are usually free during the weekends.


You might take a puzzle that has a high rating and put the "shape" into a generator and run it a while. It may not produce many puzzles per hour but they might be hard ones?
wapati
2010 Supporter
 
Posts: 527
Joined: 13 September 2006
Location: Brampton, Ontario, Canada

Re: How regular is to generate sudoku with difficulty 9+ SE?

Postby m_b_metcalf » Tue Mar 20, 2007 12:42 pm

Morgoth wrote:Mike, empirically you can prove only that something exists, but not that something doesn't:)
It is completely possible that some day, somebody with enough computer power will generate several billions random puzzles and one of them will break all records.


Right, but in the absence of formal proofs we have only empiricism to help us. As ronk pointed out, an isomorph of a diagonal puzzle will have a similar difficulty rating -- it's just easier to program a diagonal pattern than a non-diagonal pattern that can be morphed into one. They look nicer too.

I use a similar rule to tso's too, quite successfully (I have only a little PC so billions of tries are out of the question for me:!: ).

Regards,

Mike Metcalf
User avatar
m_b_metcalf
2017 Supporter
 
Posts: 13583
Joined: 15 May 2006
Location: Berlin

Postby Morgoth » Mon Mar 26, 2007 10:55 am

I tried the diagonal pattern for the weekend. I generate approximately 1 milion puzzles and there are 12 with 9.2 and more then 100 with 9.1
Nothing more! I think I should change the generation method.
Morgoth
 
Posts: 20
Joined: 06 December 2005

Postby RW » Mon Mar 26, 2007 12:00 pm

I believe the most effective way to generate hard puzzles has been using the diagonal pattern minus some clues, so that no given value may exist twice in the same band/stack.

Don't get discouraged just because you can't find any ER 10+ puzzles immediately. The diagonal property was explained in the hardest thread in late May 2006, the first ER 10.0 puzzle was found by Ocean 2½ months later. Several million diagonals must have been generated before that. When ArtoI found his "Escargot" (the first puzzle to beat SE 1.1), he created over a billion puzzles, most likely all diagonal. The supertough puzzles are very rare, to find them you need a very fast generator and a good pattern.

RW
RW
2010 Supporter
 
Posts: 1010
Joined: 16 March 2006

Postby Morgoth » Mon Mar 26, 2007 2:34 pm

Hi RW,

The problem is that I’m trying to prove my algorithm empirically even I’m not sure it works.:)

What I’m doing is:
1. Generate 16 hits (this is optimistic, especially I haven’t generated puzzle with less then 19 hints, it can be a little bit faster if I generate 20 or 24)
2. Check whether my solver can solve the puzzle, if not - add one more hint and try again – there are 3 ways to stop
– puzzle already has 0 decisions, then restart
– puzzle has one decision, then continue
– there are no more free cells in the used pattern, then restart
As this is not looking for minimal puzzle the used methods in the solver should be only fastest – in fact I use the most of them as I have proved that removing one of them the generator is going slower.
3. Try to remove a hint (I’m using random order, otherwise the first row is usually empty) and substitute it with all other possible candidates for the cell. If there is at least one of the new puzzles which can be solved, so the hint can not be removed.

The last step is doubtful – I can not prove it is wrong, I just have bad feeling about it. It surely works (otherwise it sometimes would produce impossible puzzles), but I’m not sure whether it can produce 10+ or even 9.2+.

Best regards,
Morgoth

p.s. is 120 miliseconds per puzzle fast enough? it is faster with diagonal pattern as the wrong puzzles are more, but in fact this makes it slower - 2 puzzles per second ... and SE analyse, which is a lot slower.
Morgoth
 
Posts: 20
Joined: 06 December 2005

Postby coloin » Tue Mar 27, 2007 2:01 pm

Hi Morgoth
I believe I can help you - and you can help me !

I like you struggled to generate many SE 9.1 + puzzles.......

Until I hit on a way to generate them which by passed the normal methods that I used to employ.

Heres an example - Ive not posted on the hardest sudoku thread - as its I think only a SE 11.1 !

It is the one with the highest suexrat9 value that Ive seen

Code: Select all
rating:   1728 ,  1.......6.2.5...4...3...7...4.8.2.......6........45.8.7.....3...5...9.2...6.....1
rating:   1805 ,  1.......6.2.5...4...3...7...4.8.2.......6........45.8.7.....3...5...9.2...6.....1
rating:   1859 ,  1.......6.2.5...4...3...7...4.8.2.......6........45.8.7.....3...5...9.2...6.....1
rating:   1732 ,  1.......6.2.5...4...3...7...4.8.2.......6........45.8.7.....3...5...9.2...6.....1   coffee1


perhas your computor power can search the limits of my method - as I keep finding them !!!!!

Regards
coloin
 
Posts: 2380
Joined: 05 May 2005
Location: Devon

Postby Morgoth » Tue Mar 27, 2007 3:18 pm

Hi coloin,

I'm intereseted not to generate many SE9.1+, but to prove that my generator can do it.

The computer power is one xeon 4CPU and 3 xeons 2CPU - it is not so much and I can waste it only during weekends, when nobody uses it for work. I think you need something more then 2-3 weekends to break the current record.

I saw you also use the diagonal pattern. How regular you have SE10+? Is it at least one per 10 milions?
Morgoth
 
Posts: 20
Joined: 06 December 2005

Postby coloin » Tue Mar 27, 2007 11:42 pm

I think you have to direct your search a bit

Take this made up 18 clue subgrid

Code: Select all
+---+---+---+
|1..|.9.|..6|
|.2.|5..|.4.|
|..3|...|7..|
+---+---+---+
|.4.|...|...|
|9..|...|...|
|...|...|.8.|
+---+---+---+
|..7|...|3..|
|.5.|..8|.2.|
|6..|...|..1|
+---+---+---+ It has 7518 solutions


By filling the central box with 3 clues three non-isomorphic sudokus can be found amongst [many] others.
Code: Select all
+---+---+---+
|1..|.9.|..6|
|.2.|5..|.4.|
|..3|...|7..|
+---+---+---+
|.4.|3..|...|
|9..|.1.|...|
|...|..4|.8.|
+---+---+---+
|..7|...|3..|
|.5.|..8|.2.|
|6..|...|..1|
+---+---+---+  SE 9.4

Rating with suexrat9 and SE
Code: Select all
rating:    375 ,  1...9...6.2.5...4...3...7...4.3.....9...1.........4.8...7...3...5...8.2.6.......1  SE 9.4
rating:    376 ,  1...9...6.2.5...4...3...7...4.7.....9...6.........4.8...7...3...5...8.2.6.......1  SE 9.4
rating:    325 ,  1...9...6.2.5...4...3...7...4.2.....9...3.........4.8...7...3...5...8.2.6.......1  SE 9.4 


As has been said the diagonal pattern is the same as a "morphed" one
Code: Select all
x..       x..
.x.   =   ..x 
..x       .x.

2 clues and 1 clues in a box is also desirable.

The symmetry feature tends to give hard puzzles.

Also filling in the central box with 4 clues or 5 clues can paradoxically give harder puzzles ! I think because more puzzles are generated and you have more puzzles to rate.!

I hope this helps

C
coloin
 
Posts: 2380
Joined: 05 May 2005
Location: Devon

Postby wapati » Wed Mar 28, 2007 1:42 am

coloin wrote:Also filling in the central box with 4 clues or 5 clues can paradoxically give harder puzzles ! I think because more puzzles are generated and you have more puzzles to rate.!

I hope this helps

C


I think it does! I had been leaving the center for last, creating by "hand".

I'll try the opposite, thanks.
wapati
2010 Supporter
 
Posts: 527
Joined: 13 September 2006
Location: Brampton, Ontario, Canada

Postby ravel » Wed Mar 28, 2007 5:55 pm

coloin wrote:
Code: Select all
1.......6.2.5...4...3...7...4.8.2.......6........45.8.7.....3...5...9.2...6.....1

Congrats for that puzzle, Coloin.
Though my own program only rates it with 13 points (using a step with 5 subnets), ER 11.1 is impressing AND
gsf, can you confirm, that this is the first known puzzle that has only one singles backdoor pair [36]8[87]8 (knocking on the backdoor conjecture) ?
ravel
 
Posts: 998
Joined: 21 February 2006

Next

Return to General