이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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<long> 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);
}
})(1, -1);
long ans = dp[1][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... |