Class Solution
Medium
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 of deadends
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 a target
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:
Input: deadends = [โ0201โ,โ0101โ,โ0102โ,โ1212โ,โ2002โ], target = โ0202โ
Output: 6
Explanation:
A sequence of valid moves would be โ0000โ -> โ1000โ -> โ1100โ -> โ1200โ -> โ1201โ -> โ1202โ -> โ0202โ.
Note that a sequence like โ0000โ -> โ0001โ -> โ0002โ -> โ0102โ -> โ0202โ would be invalid,
because the wheels of the lock become stuck after the display becomes the dead end โ0102โ.
Example 2:
Input: deadends = [โ8888โ], target = โ0009โ
Output: 1
Explanation: We can turn the last wheel in reverse to move from โ0000โ -> โ0009โ.
Example 3:
Input: deadends = [โ8887โ,โ8889โ,โ8878โ,โ8898โ,โ8788โ,โ8988โ,โ7888โ,โ9888โ], target = โ8888โ
Output: -1
Explanation: We cannot reach the target without getting stuck.
Constraints:
1 <= deadends.length <= 500
deadends[i].length == 4
target.length == 4
- target will not be in the list
deadends
. target
anddeadends[i]
consist of digits only.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
openLock
(java.lang.String[] deadEnds, java.lang.String target) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
openLock
public int openLock(java.lang.String[] deadEnds, java.lang.String target)
-