[LeetCode] Checking Existence of Edge Length Limited Paths

1 · · Jan. 31, 2022, 3:10 a.m.
1697. Checking Existence of Edge Length Limited Paths An undirected graph of n nodes is defined by edgeList, where edgeList[i] = [ui, vi, disi] denotes an edge between nodes ui and vi with distance disi. Note that there may be multiple edges between two nodes. Given an array queries, where queries[j] = [pj, qj, limitj], your task is to determine for each queries[j] whether there is a path between pj and qj such that each edge on the path has a distance strictly less than limitj . Return a boole...