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;
typedef long long ll;
typedef vector<ll> v;
typedef vector<v> vv;
typedef vector<vv> vvv;
typedef pair<ll, ll> p;
typedef vector<p> vp;
typedef vector<vp> vvp;
typedef vector<vvp> vvvp;
typedef pair<ll, p> tri;
typedef vector<tri> vtri;
typedef vector<vtri> vvtri;
typedef vector<vvtri> vvvtri;
typedef vector<bool> vb;
typedef vector<vb> vvb;
typedef vector<vvb> vvvb;
#define f first
#define s second
#define pb push_back
#define eb emplace_back
#define all(v) (v).begin(),(v).end()
const ll INF = 1e18;
const ll mod = 1e9 + 7;
#include "roads.h"
std::vector<long long> minimum_closure_costs(int N, std::vector<int> U, std::vector<int> V, std::vector<int> W) {
vvp graph(N);
for (ll i = 0; i < N - 1; i++)
{
graph[U[i]].eb(V[i],W[i]);
graph[V[i]].eb(U[i],W[i]);
}
v dfsOrder;
v parent(N);
stack<p> dfs;
dfs.emplace(0, -1);
vb visited(N, false);
while (!dfs.empty())
{
auto top = dfs.top();
dfs.pop();
if (visited[top.f]) continue;
visited[top.f] = true;
dfsOrder.pb(top.f);
parent[top.f] = top.s;
for (auto x : graph[top.f]) dfs.emplace(x.f, top.f);
}
vv changing(N);
for (ll i : dfsOrder)
{
for (ll j = 0; j < graph[i].size(); j++) changing[j].pb(i);
}
v freeForChildren(N, 0);
vector<long long> res(N, 0);
ll sum = 0;
for (ll i = N - 1; i >= 0; i--)
{
for (ll x : changing[i])
{
if (x != 0 && freeForChildren[parent[x]] > 0)
{
freeForChildren[parent[x]]--;
}
else
{
sum++;
freeForChildren[x]++;
}
}
res[i] = sum;
}
return res;
}
/*
int main() {
int N;
assert(1 == scanf("%d", &N));
std::vector<int> U(N - 1), V(N - 1), W(N - 1);
for (int i = 0; i < N - 1; ++i) {
assert(3 == scanf("%d %d %d", &U[i], &V[i], &W[i]));
}
std::vector<long long> closure_costs = minimum_closure_costs(N, U, V, W);
for (int i = 0; i < static_cast<int>(closure_costs.size()); ++i) {
if (i > 0) {
printf(" ");
}
printf("%lld",closure_costs[i]);
}
printf("\n");
return 0;
}
/**/
Compilation message (stderr)
roads.cpp:105:1: warning: "/*" within comment [-Wcomment]
105 | /**/
|
roads.cpp: In function 'std::vector<long long int> minimum_closure_costs(int, std::vector<int>, std::vector<int>, std::vector<int>)':
roads.cpp:60:26: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
60 | for (ll j = 0; j < graph[i].size(); j++) changing[j].pb(i);
| ~~^~~~~~~~~~~~~~~~~
# | 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... |