Thanks for the puzzles,
evert.

Have you (or your solver) tried djape's Jan 20 puzzle? Apparently it requires a new technique, which I call "path shaping". It's hard to describe the technique formally, so here is how I solved it, see if you can get the essence of that technique:
After "easy" moves:
- Code: Select all
38 37 36 12 11 .. .. 64
39 40 35 43 13 .. .. 08
21 41 42 34 44 .. .. 07
20 22 33 .. .. .. 06 01
23 19 .. .. .. 05 .. ..
24 25 .. .. .. .. .. ..
27 26 30 .. .. .. 56 ..
28 29 .. .. .. 52 .. 55
Define the following paths:
_A: 14..18 (length 5)
_B: 57..63 (length 7)
_C: 45..51 (length 7)
_D: 31..32 (length 2)
- Code: Select all
38 37 36 12 11 .. .. 64
39 40 35 43 13 .. .. 08
21 41 42 34 44 _* _* 07
20 22 33 _# _# _# 06 01
23 19 _@ _@ _@ 05 _@ ..
24 25 .. .. .. .. .. ..
27 26 30 .. .. .. 56 ..
28 29 .. .. .. 52 .. 55
_*: r3c67={_A,_B} (can be considered as a "double gateway")
_#: r4c456={_A,_B,_C}
_@: r5c3457={_A,_B,_C,_D)
=> r5c8=02
Also r4c4 (_#) can't touch r3c67 (_*)
=> r4c4 can't be from _A or _B, must be from _C=45
=> _#: r4c56={_A,_B}
- Code: Select all
38 37 36 12 11 .. .. 64
39 40 35 43 13 .. .. 08
21 41 42 34 44 _* _* 07
20 22 33 45 _# _# 06 01
23 19 _@ _@ _@ 05 _@ 02
24 25 .. .. .. .. .. ..
27 26 30 .. .. .. 56 ..
28 29 .. .. .. 52 .. 55
Now r5c7 (_@) must be from _A or _B
But it can't be from _A (too far away from 13 & 19)
=> r5c7 (_@) must be from _B
=> r4c6 (_#) must be from _B
=> r4c5 (_#) must be from _A
=> r3c6 (_*) must be from _A
=> r3c7 (_*) must be from _B
=> _@: r45c345={_A,_C,_D}
- Code: Select all
38 37 36 12 11 .. .. 64
39 40 35 43 13 .. .. 08
21 41 42 34 44 _A _B 07
20 22 33 45 _A _B 06 01
23 19 _@ _@ _@ 05 _B 02
24 25 _$ _$ .. .. .. ..
27 26 30 .. .. .. 56 ..
28 29 .. .. .. 52 .. 55
Now one of r6c34 (_$) must be from _D=31
=> r6c34 (_$) can't be both from _A
=> one of r5c34 (_@) must be from _A
(otherwise the path for _A will have at least 6 cells, too long)
=> r5c4 (_@) must be from _A
=> r5c3 (_@) must be from _D=32
=> r5c5 (_@) must be from _C=46
=> r6c3 (_$) must be from _A=18
=> r6c4 (_$) must be from _D=31
- Code: Select all
38 37 36 12 11 .. .. 64
39 40 35 43 13 .. .. 08
21 41 42 34 44 _A _B 07
20 22 33 45 _A _B 06 01
23 19 32 _A 46 05 _B 02
24 25 18 31 .. .. .. ..
27 26 30 .. .. .. 56 ..
28 29 .. .. .. 52 .. 55
Now r3c6+r4c5+r5c4 from _A must be [15..17]
=> r2c6=14
=> r2c7 must be from _B
=> r1c67=[10,09]
=> r23c7+r4c6+r5c7 from _B must be [63..60]
- Code: Select all
38 37 36 12 11 10 09 64
39 40 35 43 13 14 63 08
21 41 42 34 44 15 62 07
20 22 33 45 16 61 06 01
23 19 32 17 46 05 60 02
24 25 18 31 .. .. .. ..
27 26 30 .. .. .. 56 ..
28 29 .. .. .. 52 .. 55
Now [04,03] must be @ either r6c67 or r6c78
Gateway: r6c7 is reserved for [04,03]
Also 54 must be @ either r7c8 or r8c7
=> [59..57] can't be @ r67c8+r8c7
=> 59 can't be @ r6c8, must be @ r6c6
=> [04,03] must be @ r6c78
=> 47 must be @ r6c5
- Code: Select all
38 37 36 12 11 10 09 64
39 40 35 43 13 14 63 08
21 41 42 34 44 15 62 07
20 22 33 45 16 61 06 01
23 19 32 17 46 05 60 02
24 25 18 31 47 59 04 03
27 26 30 .. .. .. 56 ..
28 29 .. .. .. 52 .. 55
Gateway: r8c7 is reserved for [53,54]
=> 57 can't be @ r7c8 or r8c7, must be @ r7c6
=> 58 must be @ r7c5
=> [53,54] must be @ r8c7+r7c8
=> 48 must be @ r7c4
=> r8c345=[49,50,51]
- Code: Select all
38 37 36 12 11 10 09 64
39 40 35 43 13 14 63 08
21 41 42 34 44 15 62 07
20 22 33 45 16 61 06 01
23 19 32 17 46 05 60 02
24 25 18 31 47 59 04 03
27 26 30 48 58 57 56 54
28 29 49 50 51 52 53 55
Hope your solver had a easier time than me.
