eleven wrote:Hm, i only found, that Mathemagics had a look at gsf's compression (about one byte per grid), see e.g.
here.
Hi eleven,
Thank for this first link;
I read long ago something about this gsf''compression, but also that some of our friends have built a kind of "direct access" to each piece of the catalog.
Unhappily, the web pages of gsf are lost, but this is likely a compression mode optimized for the catalog.
Regarding the 18 clues puzzles, the file given by JPF has a high compression rate using the standard .rar compression. The .zip compression is already highly efficient (from 8.275 to 1.453). This is likely enough to share partial files.
On my side, I had a look to the stack 1 in a catalog shown in the classical minimal lexical mode.
The box 1 is one of
- Code: Select all
123
45a
bcd
where abcd can be one of these 10 values 6789 6798 6879 6897 7689 7698 7869 7968 7896 7986
The possible stacks are defined in "gangster mode" as soon as the pattern for the mini columns 1 and 2 in the box 2 are known.
This is 56 possibilities in the general case, but as we have r4c1=2, this is reduced here to 28.
And for each of the 28
. the column 1 has one solution
. each of the mini columns 2 and 3 in boxes 2 and 3 have 6 possibilities.
This gives, for each of the 10 valid patterns in box 1, 28 x 6**4 = 28 x 1296 =36288 possibilities easy to spot with a short piece of code.
And in total, this gives 416 x 36288 = 15 095 808 possible entries for a direct access organization.
For sure, not all these entries are valid. For example, the stack id must be >= first band ID, if not, we have a lower morph of the solution grid using stacks instead of bands.
This is likely not new, but a promising way o build a direct access.