#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define int long long
#define mp make_pair
#define mt make_tuple
#define pb push_back
#define ppb pop_back
#define eb emplace_back
#define g0(a) get<0>(a)
#define g1(a) get<1>(a)
#define g2(a) get<2>(a)
#define g3(a) get<3>(a)
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
using db = double;
using ll = long long;
using ld = long double;
using ii = pair<int, int>;
using iii = tuple<int, int, int>;
using iiii = tuple<int, int, int, int>;
template<class key, class value = null_type, class cmp = less<key> >
using ordered_set = tree<key, value, cmp, rb_tree_tag, tree_order_statistics_node_update>;
int n, mem[200005][2][2];
vector<ii> adj[200005];
int dp(int n, bool b, bool c, int e = -1) {
if (mem[n][b][c] != -1) return mem[n][b][c];
if (adj[n].size() - (e != -1) == 0) {
// leaf node
return b ? -(int)1e16 : 0;
}
int ret = -(int)1e16;
if (c) {
int case_1 = 0, case_2 = -(int)1e16;
vector<ii> reps, reps2;
for (auto [u, w] : adj[n]) if (u != e) {
int curr = max(dp(u, 0, 0, n), dp(u, 1, 0, n) + w);
case_1 += curr;
reps.eb(dp(u, 0, 1, n) + w - curr, u);
reps2.eb(dp(u, 0, 0, n) + w - curr, u);
}
sort(reps.begin(), reps.end(), greater<ii>());
sort(reps2.begin(), reps2.end(), greater<ii>());
if (reps.size() > 3) reps.erase(reps.begin() + 3, reps.end());
if (reps2.size() > 3) reps2.erase(reps2.begin() + 3, reps2.end());
if (b) {
for (auto [u, w] : adj[n]) if (u != e) {
int curr = max(dp(u, 0, 0, n), dp(u, 1, 0, n) + w), extra = 0;
for (auto [v, idx] : reps) {
for (auto [v2, idx2] : reps2) {
if (idx != idx2 && idx != u && idx2 != u) {
extra = max(extra, v + v2);
}
}
}
case_2 = max(case_2, extra + case_1 + dp(u, 0, 0, n) + w - curr);
}
case_1 = -(int)1e16;
} else {
for (auto [v, idx] : reps) {
for (auto [v2, idx2] : reps2) {
if (idx != idx2) case_2 = max(case_2, case_1 + v + v2);
}
}
}
ret = max({ret, case_1, case_2});
}
vector<ii> reps, reps2;
int case_3 = 0, case_4 = -(int)1e16, case_5 = -(int)1e16;
for (auto [u, w] : adj[n]) if (u != e) {
int curr = max(dp(u, 0, 0, n), dp(u, 1, 0, n) + w);
case_3 += curr;
reps.eb(dp(u, 0, 0, n) + w - curr, u);
reps2.eb(max(dp(u, 0, c, n), dp(u, 1, c, n) + w) - curr, u);
case_5 = max(case_5, dp(u, 0, c, n) + w - curr);
}
sort(reps.begin(), reps.end(), greater<ii>());
sort(reps2.begin(), reps2.end(), greater<ii>());
if (reps.size() > 3) reps.erase(reps.begin() + 3, reps.end());
if (reps2.size() > 3) reps2.erase(reps2.begin() + 3, reps2.end());
if (b) {
for (auto [v, idx] : reps) {
for (auto [v2, idx2] : reps2) {
if (idx != idx2) case_4 = max(case_4, case_3 + v + v2);
}
}
case_5 += case_3;
ret = max({ret, case_4, case_5});
} else {
for (auto [v, idx] : reps2) {
case_4 = max(case_4, case_3 + v);
}
ret = max(ret, case_4);
}
return mem[n][b][c] = ret;
}
main() {
memset(mem, -1, sizeof mem);
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for (int i = 1, u, v, w; i < n; i++) {
cin >> u >> v >> w;
adj[u].eb(v, w);
adj[v].eb(u, w);
}
cout << dp(1, 0, 1) << '\n';
}
Compilation message
beads.cpp:101:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
101 | main() {
| ^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
11220 KB |
Output is correct |
2 |
Correct |
6 ms |
11220 KB |
Output is correct |
3 |
Correct |
5 ms |
11220 KB |
Output is correct |
4 |
Correct |
5 ms |
11220 KB |
Output is correct |
5 |
Correct |
5 ms |
11220 KB |
Output is correct |
6 |
Correct |
5 ms |
11196 KB |
Output is correct |
7 |
Incorrect |
6 ms |
11220 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
11220 KB |
Output is correct |
2 |
Correct |
6 ms |
11220 KB |
Output is correct |
3 |
Correct |
5 ms |
11220 KB |
Output is correct |
4 |
Correct |
5 ms |
11220 KB |
Output is correct |
5 |
Correct |
5 ms |
11220 KB |
Output is correct |
6 |
Correct |
5 ms |
11196 KB |
Output is correct |
7 |
Incorrect |
6 ms |
11220 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
11220 KB |
Output is correct |
2 |
Correct |
6 ms |
11220 KB |
Output is correct |
3 |
Correct |
5 ms |
11220 KB |
Output is correct |
4 |
Correct |
5 ms |
11220 KB |
Output is correct |
5 |
Correct |
5 ms |
11220 KB |
Output is correct |
6 |
Correct |
5 ms |
11196 KB |
Output is correct |
7 |
Incorrect |
6 ms |
11220 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
11220 KB |
Output is correct |
2 |
Correct |
6 ms |
11220 KB |
Output is correct |
3 |
Correct |
5 ms |
11220 KB |
Output is correct |
4 |
Correct |
5 ms |
11220 KB |
Output is correct |
5 |
Correct |
5 ms |
11220 KB |
Output is correct |
6 |
Correct |
5 ms |
11196 KB |
Output is correct |
7 |
Incorrect |
6 ms |
11220 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |