Package g0701_0800.s0752_open_the_lock
Class Solution
java.lang.Object
g0701_0800.s0752_open_the_lock.Solution
752 - Open the Lock.<p>Medium</p>
<p>You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots: <code>'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'</code>. The wheels can rotate freely and wrap around: for example we can turn <code>'9'</code> to be <code>'0'</code>, or <code>'0'</code> to be <code>'9'</code>. Each move consists of turning one wheel one slot.</p>
<p>The lock initially starts at <code>'0000'</code>, a string representing the state of the 4 wheels.</p>
<p>You are given a list of <code>deadends</code> 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.</p>
<p>Given a <code>target</code> 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.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> deadends = [“0201”,“0101”,“0102”,“1212”,“2002”], target = “0202”</p>
<p><strong>Output:</strong> 6</p>
<p><strong>Explanation:</strong></p>
<p>A sequence of valid moves would be “0000” -> “1000” -> “1100” -> “1200” -> “1201” -> “1202” -> “0202”.</p>
<p>Note that a sequence like “0000” -> “0001” -> “0002” -> “0102” -> “0202” would be invalid,</p>
<p>because the wheels of the lock become stuck after the display becomes the dead end “0102”.</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> deadends = [“8888”], target = “0009”</p>
<p><strong>Output:</strong> 1</p>
<p><strong>Explanation:</strong> We can turn the last wheel in reverse to move from “0000” -> “0009”.</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> deadends = [“8887”,“8889”,“8878”,“8898”,“8788”,“8988”,“7888”,“9888”], target = “8888”</p>
<p><strong>Output:</strong> -1</p>
<p><strong>Explanation:</strong> We cannot reach the target without getting stuck.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>1 <= deadends.length <= 500</code></li>
<li><code>deadends[i].length == 4</code></li>
<li><code>target.length == 4</code></li>
<li>target <strong>will not be</strong> in the list <code>deadends</code>.</li>
<li><code>target</code> and <code>deadends[i]</code> consist of digits only.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
openLock
-