-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0399-evaluate-division.cpp
57 lines (44 loc) · 1.77 KB
/
0399-evaluate-division.cpp
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
class Solution {
unordered_map<string, vector<pair<string, double>>> graph;
unordered_map<string, bool> visited;
double queryAns;
public:
bool dfs(string startNode, string endNode, double runningProduct){
if(graph.find(startNode) == graph.end() || graph.find(endNode) == graph.end()) {
return false;
}
if(startNode == endNode && graph.find(startNode)!=graph.end()) {
queryAns = runningProduct;
return true;
}
bool tempAns = false;
visited[startNode] = true;
for(int i = 0; i < graph[startNode].size(); i++){
if(!visited[graph[startNode][i].first]){
tempAns = dfs(graph[startNode][i].first, endNode, runningProduct*graph[startNode][i].second);
if(tempAns){
break;
}
}
}
visited[startNode] = false;
return tempAns;
}
vector<double> calcEquation(vector<vector<string>>& equations, vector<double>& values, vector<vector<string>>& queries) {
int n = equations.size(), m = queries.size();
vector<double> ans(m);
for(int i = 0; i < n ; i++){
graph[equations[i][0]].push_back({equations[i][1], values[i]});
graph[equations[i][1]].push_back({equations[i][0], 1/values[i]});
visited[equations[i][0]] = false;
visited[equations[i][1]] = false;
}
for(int i = 0; i < m ; i++){
queryAns = 1;
bool pathFound = dfs(queries[i][0], queries[i][1], 1);
if(pathFound) ans[i] = queryAns;
else ans[i] = -1;
}
return ans;
}
};