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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
| public static double[] calcEquation(List<List<String>> equations, double[] values, List<List<String>> queries) { Map<String, Map<String, Double>> graph = buildGraph(equations, values);
int len = queries.size(); double[] results = new double[len];
for (int i = 0; i < len; i++) { String u = queries.get(i).get(0); String v = queries.get(i).get(1);
if (!graph.containsKey(u) || !graph.containsKey(v)) { results[i] = -1.0; continue; }
if (u.equals(v)) { results[i] = 1.0; continue; }
results[i] = dfs(graph, new HashSet<>(), u, v); }
return results; }
private double dfs(Map<String, Map<String, Double>> graph, Set<String> visited, String u, String v) { if (graph.get(u).containsKey(v)) { return graph.get(u).get(v); }
visited.add(u);
Map<String, Double> map = graph.get(u);
for (Map.Entry<String, Double> entry : map.entrySet()) { String nextKey = entry.getKey(); double nextRatio = entry.getValue();
if (visited.contains(nextKey)) { continue; }
double result = dfs(graph, visited, nextKey, v); if (result != -1.0) { return result * nextRatio; } }
return -1.0; }
private Map<String, Map<String, Double>> buildGraph(List<List<String>> equations, double[] values) { Map<String, Map<String, Double>> graph = new HashMap<>();
int len = equations.size();
for (int i = 0; i < len; i++) { String u = equations.get(i).get(0); String v = equations.get(i).get(1);
double w = values[i];
graph.putIfAbsent(u, new HashMap<>()); graph.get(u).put(v, w);
graph.putIfAbsent(v, new HashMap<>()); graph.get(v).put(u, 1.0 / w); }
return graph; }
|