Back
Close
  • 162

Learning Opportunities

This puzzle can be solved using the following concepts. Practice using these concepts and improve your skills.

Statement

 Goal

You are Alice and you must find the rabbit then go out of the Queen’s labyrinth of death as quickly as you can.
The labyrinth is made of thin walls, each wall is binary-coded in each cell: 1 is the the down wall, 2 the left wall, 4 the top wall and 8 the right wall. If the wall is present, add its number to the cell. For example, 10=8+2 in a cell where you stand means that there are walls on your left and on your right and that you can walk downwards and upwards.
This also means that one-way doors are not forbidden. Look for instance at 10 5, if you are on 5, you can go on 10 but you can’t go back.
In fact, the cells are coded in hexadecimal, 10 is a.
The first simple labyrinth is this one:
________
|S R|
‾‾‾‾‾‾‾‾

7=4+2+1, it’s the start cell on the left, 0xd=13=8+4+1, it’s the rabbit cell on the right. The other cells are 5=4+1.
Input
Line 1: The coordinates xs ys of the start and exit (screen-style, (0,0) on top left)
Line 2: The coordinates xr yr of the rabbit
Line 3: The width and height of the labyrinth
Next h lines: The h lines of the labyrinth coded in hexadecimal
Output
The number of cells needed to reach the rabbit then to return.
Constraints
1⩽w,h⩽7
Example
Input
0 0
5 0
6 1
75555d
Output
5 5

A higher resolution is required to access the IDE