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 "roads.h"
#include <vector>
#include <bits/stdc++.h>
using namespace std;
constexpr int NMAX = 100005;
typedef long long LL;
constexpr LL INF = 1LL * 1e15;
typedef pair <LL, int> PLLI;
struct muchie {
    int x, y;
    LL cost;
};
muchie E[NMAX];
vector <int> G[NMAX];
vector <int> Degree[NMAX];
vector <int> GoodNodes;
bool Unlocked[NMAX];
set <PLLI> H[NMAX];
LL dp[NMAX][2];
bool viz[NMAX];
bool Bad (int ind) {
    return (Unlocked[E[ind].x] && Unlocked[E[ind].y]);
}
void Dfs (int k, int Node, int dad = -1) {
    viz[Node] = true;
    for (auto it : G[Node]) {
        int to = (E[it].x == Node ? E[it].y : E[it].x);
        if (to == dad) continue;
        if (viz[to]) continue;
        if (!Unlocked[to]) continue;
        Dfs(k, to, Node);
    }
    int grad = 0;
    vector <LL> V;
    LL sum = 0;
    for (auto it : G[Node]) {
        int to = (E[it].x == Node ? E[it].y : E[it].x);
        if (to == dad) continue;
        ++ grad;
        if (Unlocked[to]) {
            V.push_back(dp[to][1] - dp[to][0]);
            sum += dp[to][0];
        }
    }
    dp[Node][0] = INF;
    dp[Node][1] = INF;
    sort(V.begin(), V.end());
    int ind_V = 0;
    auto it = H[Node].begin();
    if (k > 0) {
        dp[Node][0] = sum;
        for (int i = 0; i < max(0, grad - k + 1); ++ i ) {
            if (it == H[Node].end()) {
                dp[Node][0] += V[ind_V];
                ++ ind_V;
            }
            else {
                if (ind_V >= V.size()) {
                    dp[Node][0] += (*it).first;
                    ++ it;
                }
                else if (V[ind_V] <= (*it).first) {
                    dp[Node][0] += V[ind_V];
                    ++ ind_V;
                }
                else {
                    dp[Node][0] += (*it).first;
                    ++it;
                }
            }
        }
        while (ind_V < V.size() && V[ind_V] < 0) {
            dp[Node][0] += V[ind_V];
            ++ ind_V;
        }
        ind_V = 0;
    }
    it = H[Node].begin();
    if (dad == -1) {
        dp[Node][1] = sum;
        for (int i = 0; i < max(0, grad - k); ++ i ) {
            if (it == H[Node].end()) {
                dp[Node][1] += V[ind_V];
                ++ ind_V;
            }
            else {
                if (ind_V >= V.size()) {
                    dp[Node][1] += (*it).first;
                    ++it;
                }
                else if (V[ind_V] <= (*it).first) {
                    dp[Node][1] += V[ind_V];
                    ++ ind_V;
                }
                else {
                    dp[Node][1] += (*it).first;
                    ++it;
                }
            }
        }
        while (ind_V < V.size() && V[ind_V] < 0) {
            dp[Node][1] += V[ind_V];
            ++ ind_V;
        }
        ind_V = 0;
    }
    for (auto it : G[Node]) {
        int to = (E[it].x == Node ? E[it].y : E[it].x);
        if (to != dad) continue;
        auto pos = H[Node].begin();
        dp[Node][1] = sum + E[it].cost;
        for (int i = 0; i < max(0, grad - k); ++ i ) {
            if (pos == H[Node].end()) {
                dp[Node][1] += V[ind_V];
                ++ ind_V;
            }
            else {
                if (ind_V >= V.size()) {
                    dp[Node][1] += (*pos).first;
                    ++ pos;
                }
                else if (V[ind_V] <= (*pos).first) {
                    dp[Node][1] += V[ind_V];
                    ++ ind_V;
                }
                else {
                    dp[Node][1] += (*pos).first;
                    ++ pos;
                }
            }
        }
        while (ind_V < V.size() && V[ind_V] < 0) {
            dp[Node][1] += V[ind_V];
            ++ ind_V;
        }
        break;
    }
}
LL Solve (int K) {
    LL ans = 0;
    for (auto it : GoodNodes) {
        if (viz[it]) continue;
        Dfs(K, it, -1);
        ans += dp[it][1];
    }
    for (auto it : GoodNodes)
        viz[it] = false;
    return ans;
}
void Add (int Node) {
    GoodNodes.push_back(Node);
    Unlocked[Node] = true;
    for (auto it : G[Node]) {
        int to = (E[it].x == Node ? E[it].y : E[it].x);
        if (!Unlocked[to]) continue;
        H[Node].erase({E[it].cost, it});
        H[to].erase({E[it].cost, it});
    }
}
std::vector<long long> minimum_closure_costs(int N, std::vector<int> U,
                                             std::vector<int> V,
                                             std::vector<int> W) {
    for (int i = 1; i < N; ++ i ) {
        E[i] = {U[i-1], V[i-1], 1LL * W[i-1]};
        G[U[i-1]].push_back(i);
        G[V[i-1]].push_back(i);
        H[U[i-1]].insert({W[i-1], i});
        H[V[i-1]].insert({W[i-1], i});
    }
    for (int i = 0; i < N; ++ i ) {
        Degree[G[i].size()].push_back(i);
    }
    vector <LL> ans;
    ans.resize(N);
    for (int k = N-1; k >= 0; -- k ) {
        ans[k] = Solve(k);
        for (auto it : Degree[k])
            Add(it);
    }
    return ans;
}
Compilation message (stderr)
roads.cpp: In function 'void Dfs(int, int, int)':
roads.cpp:78:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   78 |                 if (ind_V >= V.size()) {
      |                     ~~~~~~^~~~~~~~~~~
roads.cpp:93:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   93 |         while (ind_V < V.size() && V[ind_V] < 0) {
      |                ~~~~~~^~~~~~~~~~
roads.cpp:111:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  111 |                 if (ind_V >= V.size()) {
      |                     ~~~~~~^~~~~~~~~~~
roads.cpp:126:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  126 |         while (ind_V < V.size() && V[ind_V] < 0) {
      |                ~~~~~~^~~~~~~~~~
roads.cpp:146:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  146 |                 if (ind_V >= V.size()) {
      |                     ~~~~~~^~~~~~~~~~~
roads.cpp:161:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  161 |         while (ind_V < V.size() && V[ind_V] < 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... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |