Class Solution
-
- All Implemented Interfaces:
public final class Solution
3108 - Minimum Cost Walk in Weighted Graph.
Hard
There is an undirected weighted graph with
n
vertices labeled from0
ton - 1
.You are given the integer
n
and an arrayedges
, where <code>edgesi = u<sub>i</sub>, v<sub>i</sub>, w<sub>i</sub></code> indicates that there is an edge between vertices <code>u<sub>i</sub></code> and <code>v<sub>i</sub></code> with a weight of <code>w<sub>i</sub></code>.A walk on a graph is a sequence of vertices and edges. The walk starts and ends with a vertex, and each edge connects the vertex that comes before it and the vertex that comes after it. It's important to note that a walk may visit the same edge or vertex more than once.
The cost of a walk starting at node
u
and ending at nodev
is defined as the bitwiseAND
of the weights of the edges traversed during the walk. In other words, if the sequence of edge weights encountered during the walk is <code>w<sub>0</sub>, w<sub>1</sub>, w<sub>2</sub>, ..., w<sub>k</sub></code>, then the cost is calculated as <code>w<sub>0</sub>& w<sub>1</sub>& w<sub>2</sub>& ... & w<sub>k</sub></code>, where&
denotes the bitwiseAND
operator.You are also given a 2D array
query
, where <code>queryi = s<sub>i</sub>, t<sub>i</sub></code>. For each query, you need to find the minimum cost of the walk starting at vertex <code>s<sub>i</sub></code> and ending at vertex <code>t<sub>i</sub></code>. If there exists no such walk, the answer is-1
.Return the array
answer
, whereanswer[i]
denotes the minimum cost of a walk for queryi
.Example 1:
Input: n = 5, edges = \[\[0,1,7],1,3,7,1,2,1], query = \[\[0,3],3,4]
Output: 1,-1
Explanation:
To achieve the cost of 1 in the first query, we need to move on the following edges:
0->1
(weight 7),1->2
(weight 1),2->1
(weight 1),1->3
(weight 7).In the second query, there is no walk between nodes 3 and 4, so the answer is -1.
Example 2:
Input: n = 3, edges = \[\[0,2,7],0,1,15,1,2,6,1,2,1], query = \[\[1,2]]
Output: 0
Explanation:
To achieve the cost of 0 in the first query, we need to move on the following edges:
1->2
(weight 1),2->1
(weight 6),1->2
(weight 1).Constraints:
<code>2 <= n <= 10<sup>5</sup></code>
<code>0 <= edges.length <= 10<sup>5</sup></code>
edges[i].length == 3
<code>0 <= u<sub>i</sub>, v<sub>i</sub><= n - 1</code>
<code>u<sub>i</sub> != v<sub>i</sub></code>
<code>0 <= w<sub>i</sub><= 10<sup>5</sup></code>
<code>1 <= query.length <= 10<sup>5</sup></code>
query[i].length == 2
<code>0 <= s<sub>i</sub>, t<sub>i</sub><= n - 1</code>
<code>s<sub>i</sub> != t<sub>i</sub></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-