[LeetCode] Minimum Cost Walk in Weighted Graph

3108. Minimum Cost Walk in Weighted Graph

There is an undirected weighted graph with n vertices labeled from 0 to n - 1.

You are given the integer n and an array edges, where edges[i] = [ui, vi, wi] indicates that there is an edge between vertices ui and vi with a weight of wi.

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 node v is defined as the bitwise AND of the weights of the edges traversed during the walk. In other words, if the sequence of edge weights encountered during the walk is w0, w1, w2, ..., wk, then the cost is calculated as w0 & w1 & w2 & ... & wk, where & denotes the bitwise AND operator.

You are also given a 2D array query, where query[i] = [si, ti]. For each query, you need to find the minimum cost of the walk starting at vertex si and ending at vertex ti. If there exists no such walk, the answer is -1.

Return the array answer, where answer[i] denotes the minimum cost of a walk for query i.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class Solution {
vector<int> uf;
vector<int> bits;
int find(int u) {
return uf[u] == u ? u : uf[u] = find(uf[u]);
}
void uni(int u, int v, int w) {
int pu = find(u), pv = find(v);
bits[pu] = bits[pv] = bits[pu] & bits[pv] & w;
uf[pu] = uf[pv] = min(pu, pv);
}
public:
vector<int> minimumCost(int n, vector<vector<int>>& edges, vector<vector<int>>& query) {
uf = vector<int>(n);
bits = vector<int>(n,INT_MAX);
for(int i = 0; i < n; i++) uf[i] = i;
for(auto& e : edges) {
int u = e[0], v = e[1], w = e[2];
uni(u,v,w);
}
vector<int> res;
for(auto& q : query) {
int u = q[0], v = q[1];
int pu = find(u), pv = find(v);
if(pu != pv) res.push_back(-1);
else if(u == v) res.push_back(0);
else {
int now = bits[pu];
if(now == INT_MAX) now = 0;
res.push_back(now);
}
}
return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2024/04/09/PS/LeetCode/minimum-cost-walk-in-weighted-graph/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.