Problem Description
On a 2 x 3 board, there are five tiles labeled from 1 to 5, and an empty square represented by 0. A move consists of choosing 0 and a 4-directionally adjacent number and swapping it. The state of the board is solved if and only if the board is [[1,2,3],[4,5,0]]. Given the puzzle board board, return the least number of moves required so that the state of the board is solved. If it is impossible for the state of the board to be solved, return -1.
Key Insights
- The board can be represented as a string for easy state manipulation.
- The target state is a predefined string "123450".
- The problem can be solved using Breadth-First Search (BFS) to explore all possible board configurations.
- Each configuration can lead to multiple next configurations based on the possible moves.
- A check for solvability based on the number of inversions is necessary to determine if the puzzle can be solved.
Space and Time Complexity
Time Complexity: O(1), since the maximum number of states is fixed (only 6! = 720 possible configurations). Space Complexity: O(1), as we are storing a fixed number of states regardless of input size.
Solution
To solve the Sliding Puzzle problem, we will use a Breadth-First Search (BFS) approach to explore all possible states of the board. We will represent each state as a string for easy manipulation and store visited states in a set to avoid cycles. The BFS will explore all adjacent moves until we reach the target state or exhaust all possibilities. Additionally, a pre-check for solvability based on the number of inversions will filter out impossible configurations.