이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "roads.h"
#include <bits/stdc++.h>
using namespace std;
#define all(x) begin(x), end(x)
typedef long long ll;
const int N = 2001;
int A[N], B[N], W[N], n;
ll dp[N][2];
int k;
vector<pair<int, int>> g[N];
void dfs(int v, int p) {
vector<pair<int, int>> adj;
for (auto [to, w]: g[v]) {
if (to != p) {
dfs(to, v);
adj.emplace_back(to, w);
}
}
if (k > (int)size(adj)) {
vector<ll> nw;
ll ans = 0;
for (auto [to, w]: adj) {
ans += dp[to][0] + w;
nw.push_back(dp[to][1] - dp[to][0] - w);
}
sort(all(nw));
for (int i = 0; i < (int)size(nw); ++i) {
if (nw[i] < 0)
ans += nw[i];
}
dp[v][1] = dp[0][v] = ans;
} else {
{
vector<ll> nw;
ll ans = 0;
for (auto [to, w]: adj) {
ans += dp[to][0] + w;
nw.push_back(dp[to][1] - dp[to][0] - w);
}
sort(all(nw));
for (int i = 0; i < k - 1; ++i) {
if (nw[i] < 0)
ans += nw[i];
}
dp[v][1] = ans;
}
{
vector<ll> nw;
ll ans = 0;
for (auto [to, w]: adj) {
ans += dp[to][0] + w;
nw.push_back(dp[to][1] - dp[to][0] - w);
}
sort(all(nw));
for (int i = 0; i < k; ++i) {
if (nw[i] < 0)
ans += nw[i];
}
dp[v][0] = min(dp[v][1], ans);
}
}
}
vector<ll> minimum_closure_costs(int nn, vector<int> uu, vector<int> vv, vector<int> ww) {
n = nn;
for (int i = 0; i < n - 1; ++i) {
A[i] = uu[i], B[i] = vv[i], W[i] = ww[i];
g[A[i]].emplace_back(B[i], W[i]);
g[B[i]].emplace_back(A[i], W[i]);
}
vector<ll> ans;
for (k = 0; k < n; ++k) {
dfs(0, -1);
ans.push_back(dp[0][0]);
}
return ans;
}
| # | 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... |