Class Solution
-
- All Implemented Interfaces:
public final class Solution1697 - Checking Existence of Edge Length Limited Paths\.
Hard
An undirected graph of
nnodes is defined byedgeList, where <code>edgeListi = u<sub>i</sub>, v<sub>i</sub>, dis<sub>i</sub></code> denotes an edge between nodes <code>u<sub>i</sub></code> and <code>v<sub>i</sub></code> with distance <code>dis<sub>i</sub></code>. Note that there may be multiple edges between two nodes.Given an array
queries, where <code>queriesj = p<sub>j</sub>, q<sub>j</sub>, limit<sub>j</sub></code>, your task is to determine for eachqueries[j]whether there is a path between <code>p<sub>j</sub></code> and <code>q<sub>j</sub></code> such that each edge on the path has a distance strictly less than <code>limit<sub>j</sub></code> .Return a boolean array
answer, whereanswer.length == queries.lengthand the <code>j<sup>th</sup></code> value ofansweristrueif there is a path forqueries[j]istrue, andfalseotherwise.Example 1:
Input: n = 3, edgeList = \[\[0,1,2],1,2,4,2,0,8,1,0,16], queries = \[\[0,1,2],0,2,5]
Output: false,true
Explanation: The above figure shows the given graph. Note that there are two overlapping edges between 0 and 1 with distances 2 and 16.
For the first query, between 0 and 1 there is no path where each distance is less than 2, thus we return false for this query.
For the second query, there is a path (0 -> 1 -> 2) of two edges with distances less than 5, thus we return true for this query.
Example 2:
Input: n = 5, edgeList = \[\[0,1,10],1,2,5,2,3,9,3,4,13], queries = \[\[0,4,14],1,4,13]
Output: true,false Exaplanation: The above figure shows the given graph.
Constraints:
<code>2 <= n <= 10<sup>5</sup></code>
<code>1 <= edgeList.length, queries.length <= 10<sup>5</sup></code>
edgeList[i].length == 3queries[j].length == 3<code>0 <= u<sub>i</sub>, v<sub>i</sub>, p<sub>j</sub>, q<sub>j</sub><= n - 1</code>
<code>u<sub>i</sub> != v<sub>i</sub></code>
<code>p<sub>j</sub> != q<sub>j</sub></code>
<code>1 <= dis<sub>i</sub>, limit<sub>j</sub><= 10<sup>9</sup></code>
There may be multiple edges between two nodes.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final BooleanArraydistanceLimitedPathsExist(Integer n, Array<IntArray> edgeList, Array<IntArray> queries)-
-
Method Detail
-
distanceLimitedPathsExist
final BooleanArray distanceLimitedPathsExist(Integer n, Array<IntArray> edgeList, Array<IntArray> queries)
-
-
-
-