As additional constraint I'd like to pose that she is not allowed to pass squares that she has already visited.
(For example: she could move from e2 to e3, but then as next move e3-e1 is not allowed, since that would imply passing e2 and e2 has already been visited.)
The following grid describes such a path:
- Code: Select all
14;15;16;53;54;05;06;07
13;38;39;55;52;09;10;08
37;12;18;51;56;42;43;30
24;49;50;45;58;57;41;23
01;25;48;11;44;59;60;22
26;47;17;36;31;61;40;21
46;34;35;33;32;04;62;64
27;28;29;02;03;20;63;19
(1 is where the queen starts, 64 is where she ends, and no pair of consecutive numbers is separated by a lower number.)
The following puzzle is based on this constraint:
- Code: Select all
..;34;05;..;13;26;07;03
..;33;..;..;..;08;..;01
10;36;14;28;..;17;..;46
30;..;..;38;..;57;..;51
..;..;23;22;..;..;60;52
..;42;43;..;..;64;..;58
..;18;41;45;..;63;..;..
16;40;..;..;20;55;..;48
The remaining numbers must be completed.
www.scrybqj.com/scrybqjdocuments/queenstourpuzzle.pdf
Actually this is a Hidato variant.