Open the Lock
You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots:'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'
. The wheels can rotate freely and wrap around: for example we can turn'9'
to be'0'
, or'0'
to be'9'
. Each move consists of turning one wheel one slot.
The lock initially starts at'0000'
, a string representing the state of the 4 wheels.
You are given a list ofdeadends
dead ends, meaning if the lock displays any of these codes, the wheels of the lock will stop turning and you will be unable to open it.
Given atarget
representing the value of the wheels that will unlock the lock, return the minimum total number of turns required to open the lock, or -1 if it is impossible.
Example 1:
Example 2:
Example 3:
Example 4:
Note:
The length of
deadends
will be in the range[1, 500]
.target
will not be in the listdeadends
.Every string in
deadends
and the stringtarget
will be a string of 4 digits from the 10,000 possibilities'0000'
to'9999'
.
Analysis
lock的每一个状态都可以看成一个节点,是否能从一个状态到另一个状态,看成节点之间是否右边,这个问题就转化为了一个图中最短路径shortest path的问题。target就是目标节点,deadends就是不能连通的节点。
Why not DFS?
Because the problem here asks for the minimum number of steps to achieve the target state. Using BFS, we can report the answer as long as we reach the target state. But using DFS, we can't guarantee that the initial target state that we reach is the optimal solution. You still have to search the whole search space. Think about the problem that to find the depth of a binary tree, it is quite similar in this sense.
Approach 1: Regular BFS
BFS在求shortest path时,要注意何时增加搜索的layer数。一般来说就是用一个layerSize变量记录进入每个layer初始时的大小,内层循环中每poll()一次就减小layerSize,直到layerSize变为0,则层数+1,进入下一个外层循环。
注意点:
每个wheel可以正向也可以反向旋转,因此每次BFS节点生成下一层的搜索节点时,实际上会有8个待搜索节点:4个wheel,每个wheel +1 or -1,4 * 2 = 8,这样写循环时可以用两重循环遍历这4*2个新节点。
要搜索的是字符串,但是生成新搜索节点时要一次改变一个字符,Java中字符串是immutable,就需要考虑用char array或者string builder,或者最普通的加号(+)string concatenation。根据不同的情形可以有如下实现方式:
字符数组(要注意每次修改完一个字符生成新字符串后,要还原这一个字符以便进行下一个循环)
chs[i] = (char)((chTmp - '0' + d + 10) % 10 + '0'); String newStr = new String(chs);
string builder:
String s1 = sb.substring(0, i) + (c == '9' ? 0 : c - '0' + 1) + sb.substring(i + 1); String s2 = sb.substring(0, i) + (c == '0' ? 9 : c - '0' - 1) + sb.substring(i + 1);
字符串拼接:
int y = ((node.charAt(i) - '0') + d + 10) % 10;
然后字符串拼接:String nei = node.substring(0, i) + ("" + y) + node.substring(i+1);
Complexity
Time Complexity:
O(N^2 * A^N+D)
whereA
is the number of digits in our alphabet,N
is the number of digits in the lock, andDDis the size ofdeadends
. We might visit every lock combination, plus we need to instantiate our setdead
. When we visit every lock combination, we spendO(N^2)
time enumerating through and constructing each node.Space Complexity:
O(A^N + D)
, for thequeue
and the setdead
.
Approach 2: Bi-directional (2-end) BFS
针对此题,因为起始点和终点已知,用BFS还有一种改进的实现方式,分别从begin和end同时进行BFS。
If you know exactly the start position and the end position(In this problem, the start position is "0000" and the end position is target), you can do BFS from both side instead of doing BFS only from the starting position.You find the intersection, you get the result. Otherwise, if you do not know what the end point is, you can't use 2 - end BFS (eg. maze problem, as you wouldn't be able to know the exit postion).
By always picking a smaller set..
这里搜索时用两个HashSet,每次选set中数目较少的那个进行遍历。不需要用Queue是因为每一层内部的顺序没有影响。
Solution
BFS - (114 ms, faster than 83.92%)
Bi-direction 2-end BFS (79 ms) @yaoyimingg
LeetCode Solution
Reference
Official Solution:
https://leetcode.com/problems/open-the-lock/solution/
Regular java BFS solution and 2-end BFS solution with improvement
Bi-directional Search: https://www.geeksforgeeks.org/bidirectional-search/
Last updated