-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1325-path-with-maximum-probability.cpp
60 lines (57 loc) · 1.98 KB
/
1325-path-with-maximum-probability.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
class Solutio {
public:
double maxProbability(int n, vector<vector<int>>& edges, vector<double>& suc , int st, int en) {
for (auto& i : suc) i = log(i);
vector<vector<pair<int, double>>> adj(n);
for (int i = 0; i < edges.size(); i++) {
adj[edges[i][0]].push_back({edges[i][1], suc[i]});
adj[edges[i][1]].push_back({edges[i][0], suc[i]});
}
set<pair<double, int>, greater<pair<double, int>>> s; // weight, node
s.insert({0, st});
vector<double> dis(n, -1e9);
while (!s.empty()) {
int u = s.begin()->second;
s.erase(s.begin());
for (auto& x : adj[u]) {
int v = x.first;
double cost = x.second;
if (dis[u] + cost > dis[v]) {
dis[v] = dis[u] + cost;
s.insert({dis[v], v});
}
}
}
return exp(dis[en]);
return 0;
}
};
class Solution {
public:
double maxProbability(int n, vector<vector<int>>& edges, vector<double>& suc , int st, int en) {
for (auto& i : suc) i = log(i);
vector<vector<pair<int, double>>> adj(n);
for (int i = 0; i < edges.size(); i++) {
adj[edges[i][0]].push_back({edges[i][1], suc[i]});
adj[edges[i][1]].push_back({edges[i][0], suc[i]});
}
set<pair<double, int>, greater<pair<double, int>>> s; // weight, node
s.insert({0, st});
vector<double> dis(n, -1000000000);
while (!s.empty()) {
int u = s.begin()->second;
double w = s.begin()->first;
s.erase(s.begin());
for (auto& x : adj[u]) {
int v = x.first;
double cost = x.second;
if (w + cost > dis[v]) {
dis[v] = w + cost;
s.insert({dis[v], v});
}
}
}
for (auto& i : dis) cout << i << ' ';
return exp(dis[en]);
}
};