This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
namespace {
template <typename Fun>
struct YCombinator {
template <typename T>
YCombinator(T &&_fun) : fun(forward<T>(_fun)) {}
template <typename... Args>
decltype(auto) operator()(Args &&...args) {
return fun(ref(*this), forward<Args>(args)...);
}
private:
Fun fun;
};
template <typename T>
YCombinator(T &&) -> YCombinator<decay_t<T>>;
} // namespace
void solve() {
int n;
cin >> n;
vector<vector<pair<int, long>>> adj(n);
for (int i = 0; i < n - 1; i++) {
int u, v;
long x;
cin >> u >> v >> x;
--u;
--v;
adj[u].emplace_back(v, x);
adj[v].emplace_back(u, x);
}
vector<array<long, 2>> dp(n);
YCombinator([&](auto self, int u, int p) -> void {
vector<pair<int, long>> ch;
for (auto [v, x] : adj[u]) {
if (v != p) {
ch.emplace_back(v, x);
self(v, u);
}
}
int k = (int)ch.size();
vector<long> res(k);
for (int i = 0; i < k; i++) {
auto [v, x] = ch[i];
res[i] = dp[v][0];
if (dp[v][1] != -1) {
res[i] = max(res[i], dp[v][1] + x);
}
}
vector<int> pref(k + 1), suff(k + 1);
for (int i = 0; i < k; i++) {
pref[i + 1] = pref[i] + res[i];
}
for (int i = k - 1; i >= 0; i--) {
suff[i] = suff[i + 1] + res[i];
}
dp[u][0] = pref[k];
dp[u][1] = -1;
for (int i = 0; i < k; i++) {
auto [v, x] = ch[i];
if (dp[u][1] != -1) {
dp[u][0] = max(dp[u][0], dp[u][1] + suff[i + 1] + dp[v][0] + x);
}
if (dp[u][1] != -1) {
dp[u][1] += res[i];
}
dp[u][1] = max(dp[u][1], pref[i] + dp[v][0] + x);
}
})(0, -1);
long ans = dp[0][0];
cout << ans << '\n';
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |