-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path399.cpp
150 lines (145 loc) · 4.64 KB
/
399.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#include <bits/stdc++.h>
#include <gtest/gtest.h>
using namespace std;
class Solution {
public:
struct Node {
string _string;
vector<pair<Node *, double>> neighbors;
Node() {}
Node(string str) : _string(str) {}
};
inline Node *isInGraph(Node *graph, string &str, vector<Node *> &visited)
{
if (graph == nullptr) {
return nullptr;
}
if (graph->_string == str) {
return graph;
}
visited.push_back(graph);
for (auto &neighbor : graph->neighbors) {
if (find(visited.begin(), visited.end(), neighbor.first) !=
visited.end()) {
continue;
}
Node *result = isInGraph(neighbor.first, str, visited);
if (result != nullptr) {
return result;
}
}
return nullptr;
}
inline bool dfs(Node *graph, string &str, Node *node, double &res,
vector<Node *> &visited)
{
if (node == nullptr) {
return false;
}
if (node->_string == str) {
return true;
}
visited.push_back(node);
for (auto &neighbor : node->neighbors) {
if (find(visited.begin(), visited.end(), neighbor.first) !=
visited.end()) {
continue;
}
if (dfs(graph, str, neighbor.first, res, visited)) {
res *= neighbor.second;
return true;
}
}
return false;
}
inline Node *builder(vector<vector<string>> &equations,
vector<double> &values)
{
auto itE = equations.begin();
auto itV = values.begin();
Node *graph = new Node("🐛");
vector<Node *> visited;
while (itE != equations.end() || itV != values.end()) {
visited.clear();
bool flag1 = false;
bool flag2 = false;
Node *node1 = isInGraph(graph, (*itE)[0], visited);
if (node1 == nullptr) {
Node *node = new Node();
node->_string = (*itE)[0];
node1 = node;
flag1 = true;
}
visited.clear();
Node *node2 = isInGraph(graph, (*itE)[1], visited);
if (node2 == nullptr) {
Node *node = new Node();
node->_string = (*itE)[1];
node2 = node;
flag2 = true;
}
if (flag1 && flag2) {
graph->neighbors.push_back({node1, 1});
}
node1->neighbors.push_back({node2, *itV});
node2->neighbors.push_back({node1, 1 / *itV});
++itE;
++itV;
}
return graph;
}
inline vector<double> solver(Node *graph, vector<vector<string>> &queries)
{
vector<double> result;
vector<Node *> visited;
for (auto &query : queries) {
string &str1 = query[0];
string &str2 = query[1];
visited.clear();
Node *node = isInGraph(graph, str1, visited);
if (node == nullptr) {
result.push_back(-1);
continue;
}
if (str1 == str2) {
result.push_back(1);
continue;
}
double res = 1;
visited.clear();
if (!dfs(graph, str2, node, res, visited)) {
res = -1;
}
result.push_back(res);
}
return result;
}
vector<double> calcEquation(vector<vector<string>> &equations,
vector<double> &values,
vector<vector<string>> &queries)
{
Node *graph = builder(equations, values);
vector<double> result = solver(graph, queries);
return result;
}
};
TEST(calcEquation, case1)
{
Solution s;
vector<vector<string>> equations = {{"a", "b"}, {"b", "c"}};
vector<double> values = {2.0, 3.0};
vector<vector<string>> queries = {
{"a", "c"}, {"b", "a"}, {"a", "e"}, {"a", "a"}, {"x", "x"}};
vector<double> output = {6.0, 0.5, -1.0, 1.0, -1.0};
EXPECT_EQ(s.calcEquation(equations, values, queries), output);
}
TEST(calcEquation, case2)
{
Solution s;
vector<vector<string>> equations = {{"a", "b"}, {"b", "c"}, {"bc", "cd"}};
vector<double> values = {1.5, 2.5, 5.0};
vector<vector<string>> queries = {
{"a", "c"}, {"c", "b"}, {"bc", "cd"}, {"cd", "bc"}};
vector<double> output = {3.75000, 0.40000, 5.00000, 0.20000};
EXPECT_EQ(s.calcEquation(equations, values, queries), output);
}