How the board works
The board is a tight rectangle of unequal blocks. Cao Cao is the large block, guards and soldiers fill the lanes, and the empty cells are the only places where motion can begin.
Algorithmic puzzle-system sample / Huarong Dao
Huarong Dao is the first algorithmic puzzle-system sample in this maker-run resource. It sits beside Tangram and Nine Linked Rings because the first shelf is about shape, sequence, and search: three ways old puzzle objects become AI-readable puzzle systems.
Read the system
The story makes the puzzle memorable, but the board is what makes it reusable. Once the pieces, empty cells, and legal slides are clear, Huarong Dao becomes a compact model for search, constraint, and path finding.
The board is a tight rectangle of unequal blocks. Cao Cao is the large block, guards and soldiers fill the lanes, and the empty cells are the only places where motion can begin.
The source material supports Huarong Dao as a Chinese sliding-block puzzle with a Three Kingdoms story frame. Its exact toy history should stay cautious, especially when comparing it with other sliding-block traditions.
Every legal board layout is a state. A solver can generate legal moves, compare paths, measure dead ends, and ask why one arrangement opens space while another traps the board.
Try the board
Use the board to test the first moves yourself. The replay turns each arrangement into a node and each legal slide into an edge, which is exactly the kind of structure a search algorithm can reason about.
State 1 of 6
Start from a crowded board with two empty cells near the exit.
A solver reads this entire layout as one node in the graph, not as ten separate pieces.Challenge status
Move S1 into the lower pocket.
Move S1 down into row 5. The pocket opens only after the soldier leaves row 4.
Select a block to see legal slides from this board state.
Hidden mathematics
Once each legal board position becomes a state, a solution is a path through a graph. Shorter paths, dead ends, and layout families become questions of search, not just questions of patience.
Read every legal board arrangement as one node in a graph.
Move from state to state until the large block reaches the exit.
Compare 100-step, 84-step, and shorter routes as different paths.
Huarong Dao library
A source-backed guide to Huarong Dao as a Chinese sliding-block puzzle and a natural route into state-space exploration.
Source pages 205-289Read the search guideNext challenge
The next product step is a short challenge layer on top of the current board: select S1, move it into the lower pocket, count the move, and show why that tiny shift creates room for later search. This keeps the task understandable before asking visitors to solve the whole puzzle.