--- comments: true difficulty: 中等 edit_url: https://github.com/doocs/leetcode/edit/main/solution/0300-0399/0399.Evaluate%20Division/README.md tags: - 深度优先搜索 - 广度优先搜索 - 并查集 - 图 - 数组 - 字符串 - 最短路 --- # [399. 除法求值](https://leetcode.cn/problems/evaluate-division) [English Version](/solution/0300-0399/0399.Evaluate%20Division/README_EN.md) ## 题目描述

给你一个变量对数组 equations 和一个实数值数组 values 作为已知条件,其中 equations[i] = [Ai, Bi]values[i] 共同表示等式 Ai / Bi = values[i] 。每个 AiBi 是一个表示单个变量的字符串。

另有一些以数组 queries 表示的问题,其中 queries[j] = [Cj, Dj] 表示第 j 个问题,请你根据已知条件找出 Cj / Dj = ? 的结果作为答案。

返回 所有问题的答案 。如果存在某个无法确定的答案,则用 -1.0 替代这个答案。如果问题中出现了给定的已知条件中没有出现的字符串,也需要用 -1.0 替代这个答案。

注意:输入总是有效的。你可以假设除法运算中不会出现除数为 0 的情况,且不存在任何矛盾的结果。

注意:未在等式列表中出现的变量是未定义的,因此无法确定它们的答案。

 

示例 1:

输入:equations = [["a","b"],["b","c"]], values = [2.0,3.0], queries = [["a","c"],["b","a"],["a","e"],["a","a"],["x","x"]]
输出:[6.00000,0.50000,-1.00000,1.00000,-1.00000]
解释:
条件:a / b = 2.0, b / c = 3.0
问题:a / c = ?, b / a = ?, a / e = ?, a / a = ?, x / x = ?
结果:[6.0, 0.5, -1.0, 1.0, -1.0 ]
注意:x 是未定义的 => -1.0

示例 2:

输入:equations = [["a","b"],["b","c"],["bc","cd"]], values = [1.5,2.5,5.0], queries = [["a","c"],["c","b"],["bc","cd"],["cd","bc"]]
输出:[3.75000,0.40000,5.00000,0.20000]

示例 3:

输入:equations = [["a","b"]], values = [0.5], queries = [["a","b"],["b","a"],["a","c"],["x","y"]]
输出:[0.50000,2.00000,-1.00000,-1.00000]

 

提示:

## 解法 ### 方法一 #### Python3 ```python class Solution: def calcEquation( self, equations: List[List[str]], values: List[float], queries: List[List[str]] ) -> List[float]: def find(x): if p[x] != x: origin = p[x] p[x] = find(p[x]) w[x] *= w[origin] return p[x] w = defaultdict(lambda: 1) p = defaultdict() for a, b in equations: p[a], p[b] = a, b for i, v in enumerate(values): a, b = equations[i] pa, pb = find(a), find(b) if pa == pb: continue p[pa] = pb w[pa] = w[b] * v / w[a] return [ -1 if c not in p or d not in p or find(c) != find(d) else w[c] / w[d] for c, d in queries ] ``` #### Java ```java class Solution { private Map p; private Map w; public double[] calcEquation( List> equations, double[] values, List> queries) { int n = equations.size(); p = new HashMap<>(); w = new HashMap<>(); for (List e : equations) { p.put(e.get(0), e.get(0)); p.put(e.get(1), e.get(1)); w.put(e.get(0), 1.0); w.put(e.get(1), 1.0); } for (int i = 0; i < n; ++i) { List e = equations.get(i); String a = e.get(0), b = e.get(1); String pa = find(a), pb = find(b); if (Objects.equals(pa, pb)) { continue; } p.put(pa, pb); w.put(pa, w.get(b) * values[i] / w.get(a)); } int m = queries.size(); double[] ans = new double[m]; for (int i = 0; i < m; ++i) { String c = queries.get(i).get(0), d = queries.get(i).get(1); ans[i] = !p.containsKey(c) || !p.containsKey(d) || !Objects.equals(find(c), find(d)) ? -1.0 : w.get(c) / w.get(d); } return ans; } private String find(String x) { if (!Objects.equals(p.get(x), x)) { String origin = p.get(x); p.put(x, find(p.get(x))); w.put(x, w.get(x) * w.get(origin)); } return p.get(x); } } ``` #### C++ ```cpp class Solution { public: unordered_map p; unordered_map w; vector calcEquation(vector>& equations, vector& values, vector>& queries) { int n = equations.size(); for (auto e : equations) { p[e[0]] = e[0]; p[e[1]] = e[1]; w[e[0]] = 1.0; w[e[1]] = 1.0; } for (int i = 0; i < n; ++i) { vector e = equations[i]; string a = e[0], b = e[1]; string pa = find(a), pb = find(b); if (pa == pb) continue; p[pa] = pb; w[pa] = w[b] * values[i] / w[a]; } int m = queries.size(); vector ans(m); for (int i = 0; i < m; ++i) { string c = queries[i][0], d = queries[i][1]; ans[i] = p.find(c) == p.end() || p.find(d) == p.end() || find(c) != find(d) ? -1.0 : w[c] / w[d]; } return ans; } string find(string x) { if (p[x] != x) { string origin = p[x]; p[x] = find(p[x]); w[x] *= w[origin]; } return p[x]; } }; ``` #### Go ```go func calcEquation(equations [][]string, values []float64, queries [][]string) []float64 { p := make(map[string]string) w := make(map[string]float64) for _, e := range equations { a, b := e[0], e[1] p[a], p[b] = a, b w[a], w[b] = 1.0, 1.0 } var find func(x string) string find = func(x string) string { if p[x] != x { origin := p[x] p[x] = find(p[x]) w[x] *= w[origin] } return p[x] } for i, v := range values { a, b := equations[i][0], equations[i][1] pa, pb := find(a), find(b) if pa == pb { continue } p[pa] = pb w[pa] = w[b] * v / w[a] } var ans []float64 for _, e := range queries { c, d := e[0], e[1] if p[c] == "" || p[d] == "" || find(c) != find(d) { ans = append(ans, -1.0) } else { ans = append(ans, w[c]/w[d]) } } return ans } ``` #### Rust ```rust use std::collections::HashMap; #[derive(Debug)] pub struct DSUNode { parent: String, weight: f64, } pub struct DisjointSetUnion { nodes: HashMap, } impl DisjointSetUnion { pub fn new(equations: &Vec>) -> DisjointSetUnion { let mut nodes = HashMap::new(); for equation in equations.iter() { for iter in equation.iter() { nodes.insert( iter.clone(), DSUNode { parent: iter.clone(), weight: 1.0, }, ); } } DisjointSetUnion { nodes } } pub fn find(&mut self, v: &String) -> String { let origin = self.nodes[v].parent.clone(); if origin == *v { return origin; } let root = self.find(&origin); self.nodes.get_mut(v).unwrap().parent = root.clone(); self.nodes.get_mut(v).unwrap().weight *= self.nodes[&origin].weight; root } pub fn union(&mut self, a: &String, b: &String, v: f64) { let pa = self.find(a); let pb = self.find(b); if pa == pb { return; } let (wa, wb) = (self.nodes[a].weight, self.nodes[b].weight); self.nodes.get_mut(&pa).unwrap().parent = pb; self.nodes.get_mut(&pa).unwrap().weight = (wb * v) / wa; } pub fn exist(&mut self, k: &String) -> bool { self.nodes.contains_key(k) } pub fn calc_value(&mut self, a: &String, b: &String) -> f64 { if !self.exist(a) || !self.exist(b) || self.find(a) != self.find(b) { -1.0 } else { let wa = self.nodes[a].weight; let wb = self.nodes[b].weight; wa / wb } } } impl Solution { pub fn calc_equation( equations: Vec>, values: Vec, queries: Vec>, ) -> Vec { let mut dsu = DisjointSetUnion::new(&equations); for (i, &v) in values.iter().enumerate() { let (a, b) = (&equations[i][0], &equations[i][1]); dsu.union(a, b, v); } let mut ans = vec![]; for querie in queries { let (c, d) = (&querie[0], &querie[1]); ans.push(dsu.calc_value(c, d)); } ans } } ``` #### TypeScript ```ts function calcEquation(equations: string[][], values: number[], queries: string[][]): number[] { const g: Record = {}; const ans = Array.from({ length: queries.length }, () => -1); for (let i = 0; i < equations.length; i++) { const [a, b] = equations[i]; (g[a] ??= []).push([b, values[i]]); (g[b] ??= []).push([a, 1 / values[i]]); } for (let i = 0; i < queries.length; i++) { const [c, d] = queries[i]; const vis = new Set(); const q: [string, number][] = [[c, 1]]; if (!g[c] || !g[d]) continue; if (c === d) { ans[i] = 1; continue; } for (const [current, v] of q) { if (vis.has(current)) continue; vis.add(current); for (const [intermediate, multiplier] of g[current]) { if (vis.has(intermediate)) continue; if (intermediate === d) { ans[i] = v * multiplier; break; } q.push([intermediate, v * multiplier]); } if (ans[i] !== -1) break; } } return ans; } ```