-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0773-sliding-puzzle.js
51 lines (43 loc) · 1.37 KB
/
0773-sliding-puzzle.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* 773. Sliding Puzzle
* https://leetcode.com/problems/sliding-puzzle/
* Difficulty: Hard
*
* On an 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.
*/
/**
* @param {number[][]} board
* @return {number}
*/
var slidingPuzzle = function(board) {
const target = '123450';
const moves = [
[1, 3], [0, 2, 4], [1, 5],
[0, 4], [1, 3, 5], [2, 4]
];
const start = board.flat().join('');
if (start === target) return 0;
const queue = [[start, 0]];
const seen = new Set([start]);
while (queue.length) {
const [state, steps] = queue.shift();
const index = state.indexOf('0');
for (const next of moves[index]) {
const chars = state.split('');
[chars[index], chars[next]] = [chars[next], chars[index]];
const nextState = chars.join('');
if (nextState === target) return steps + 1;
if (!seen.has(nextState)) {
seen.add(nextState);
queue.push([nextState, steps + 1]);
}
}
}
return -1;
};