|
| 1 | +<p>You are given a network of <code>n</code> nodes, labeled from <code>1</code> to <code>n</code>. You are also given <code>times</code>, a list of travel times as directed edges <code>times[i] = (u<sub>i</sub>, v<sub>i</sub>, w<sub>i</sub>)</code>, where <code>u<sub>i</sub></code> is the source node, <code>v<sub>i</sub></code> is the target node, and <code>w<sub>i</sub></code> is the time it takes for a signal to travel from source to target.</p> |
| 2 | + |
| 3 | +<p>We will send a signal from a given node <code>k</code>. Return <em>the <strong>minimum</strong> time it takes for all the</em> <code>n</code> <em>nodes to receive the signal</em>. If it is impossible for all the <code>n</code> nodes to receive the signal, return <code>-1</code>.</p> |
| 4 | + |
| 5 | +<p> </p> |
| 6 | +<p><strong class="example">Example 1:</strong></p> |
| 7 | +<img alt="" src="https://assets.leetcode.com/uploads/2019/05/23/931_example_1.png" style="width: 217px; height: 239px;" /> |
| 8 | +<pre> |
| 9 | +<strong>Input:</strong> times = [[2,1,1],[2,3,1],[3,4,1]], n = 4, k = 2 |
| 10 | +<strong>Output:</strong> 2 |
| 11 | +</pre> |
| 12 | + |
| 13 | +<p><strong class="example">Example 2:</strong></p> |
| 14 | + |
| 15 | +<pre> |
| 16 | +<strong>Input:</strong> times = [[1,2,1]], n = 2, k = 1 |
| 17 | +<strong>Output:</strong> 1 |
| 18 | +</pre> |
| 19 | + |
| 20 | +<p><strong class="example">Example 3:</strong></p> |
| 21 | + |
| 22 | +<pre> |
| 23 | +<strong>Input:</strong> times = [[1,2,1]], n = 2, k = 2 |
| 24 | +<strong>Output:</strong> -1 |
| 25 | +</pre> |
| 26 | + |
| 27 | +<p> </p> |
| 28 | +<p><strong>Constraints:</strong></p> |
| 29 | + |
| 30 | +<ul> |
| 31 | + <li><code>1 <= k <= n <= 100</code></li> |
| 32 | + <li><code>1 <= times.length <= 6000</code></li> |
| 33 | + <li><code>times[i].length == 3</code></li> |
| 34 | + <li><code>1 <= u<sub>i</sub>, v<sub>i</sub> <= n</code></li> |
| 35 | + <li><code>u<sub>i</sub> != v<sub>i</sub></code></li> |
| 36 | + <li><code>0 <= w<sub>i</sub> <= 100</code></li> |
| 37 | + <li>All the pairs <code>(u<sub>i</sub>, v<sub>i</sub>)</code> are <strong>unique</strong>. (i.e., no multiple edges.)</li> |
| 38 | +</ul> |
0 commit comments