이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int const maxn = 10101;
struct Edge {
int u, w;
};
vector<Edge> v[maxn];
int h[maxn];
int tam(int x, int p = -1) {
h[x] = 1;
for (Edge e : v[x]) {
if (e.u == p) continue;
h[x] = max(h[x], tam(e.u, x) + 1);
}
return h[x];
}
int dp[maxn][2];
int solve(int x, int p = -1, int t = 0) {
if (dp[x][t] >= 0) return dp[x][t];
if (h[x] < 2) return 0;
int& d = dp[x][t];
d = 0;
if (t == 0) {
for (Edge e : v[x]) {
if (e.u == p) continue;
if (h[e.u] > 1) {
d += max(solve(e.u, x, 1) + e.w,
solve(e.u, x, 0));
}
}
}
else {
int sum = 0;
for (Edge e : v[x]) {
if (e.u == p) continue;
if (h[e.u] > 1)
sum += max(solve(e.u, x, 1) + e.w,
solve(e.u, x, 0));
}
for (Edge e : v[x]) {
if (e.u == p) continue;
if (h[e.u] > 1)
d = max(d, sum - max(solve(e.u, x, 1) + e.w, solve(e.u, x, 0)) +
e.w + solve(e.u, x, 0));
else
d = max(d, sum + e.w);
}
}
return d;
}
int test(int x) {
memset(dp, -1, sizeof(dp));
tam(x);
return solve(x);
}
int main() {
ios::sync_with_stdio(false), cin.tie(nullptr);
int n;
cin >> n;
for (int i = 0; i < n-1; i++) {
int a, b, w;
cin >> a >> b >> w;
v[a].push_back({b, w});
v[b].push_back({a, w});
}
int ans = 0;
for (int i = 1; i <= n; i++)
ans = max(ans, test(i));
cout << ans << "\n";
}
# | 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... |