forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
choose-edges-to-maximize-score-in-a-tree.cpp
77 lines (71 loc) · 2.69 KB
/
choose-edges-to-maximize-score-in-a-tree.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
// Time: O(n)
// Space: O(n)
// iterative dfs, tree dp
class Solution {
public:
long long maxScore(vector<vector<int>>& edges) {
vector<vector<pair<int, int>>> adj(size(edges));
for (int i = 1; i < size(edges); ++i) {
adj[edges[i][0]].emplace_back(i, edges[i][1]);
}
const auto& iter_dfs = [&]() {
vector<pair<int64_t, int64_t>> result(size(adj));
vector<pair<int, int>> stk = {{1, 0}};
while (!empty(stk)) {
const auto [step, u] = stk.back(); stk.pop_back();
if (step == 1) {
if (empty(adj[u])) {
continue;
}
stk.emplace_back(2, u);
for (const auto& [v, _] : adj[u]) {
stk.emplace_back(1, v);
}
} else if (step == 2) {
int64_t without_u = 0;
for (const auto& [v, _] : adj[u]) {
without_u += max(result[v].first, result[v].second);
}
int64_t with_u = 0;
for (int i = 0; i < size(adj[u]); ++i) {
const auto& [v, w] = adj[u][i];
with_u = max(with_u, without_u - max(result[v].first, result[v].second) + (result[v].second + w));
}
result[u] = make_pair(with_u, without_u);
}
}
return max(result[0].first, result[0].second);
};
return iter_dfs();
}
};
// Time: O(n)
// Space: O(n)
// dfs, tree dp
class Solution2 {
public:
long long maxScore(vector<vector<int>>& edges) {
vector<vector<pair<int, int>>> adj(size(edges));
for (int i = 1; i < size(edges); ++i) {
adj[edges[i][0]].emplace_back(i, edges[i][1]);
}
const function<pair<int64_t, int64_t>(int)> dfs = [&](int u) {
if (empty(adj[u])) {
return make_pair<int64_t, int64_t>(0, 0);
}
vector<pair<int64_t, int64_t>> children;
int64_t without_u = 0;
for (const auto& [v, _] : adj[u]) {
children.emplace_back(dfs(v));
without_u += max(children.back().first, children.back().second);
}
int64_t with_u = 0;
for (int i = 0; i < size(adj[u]); ++i) {
with_u = max(with_u, without_u - max(children[i].first, children[i].second) + (children[i].second + adj[u][i].second));
}
return make_pair(with_u, without_u);
};
const auto& result = dfs(0);
return max(result.first, result.second);
}
};