| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 526743 | siewjh | Parkovi (COCI22_parkovi) | C++17 | 1184 ms | 43000 KiB |
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 <iostream>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
typedef long long ll;
const int MAXN = 200'005;
const ll inf = 1e16;
vector<pair<int, ll>> adjlist[MAXN];
vector<int> ans;
pair<bool, ll> dfs(int x, int par, ll dist, ll maxdist) {
ll over = -inf, under = 0;
for (auto nxt : adjlist[x]) {
int nn = nxt.first; ll nd = nxt.second;
if (nn == par) continue;
auto res = dfs(nn, x, nd, maxdist);
if (res.first) over = max(over, res.second);
else under = max(under, res.second);
}
if (over >= under) return { 1, over - dist };
else if (under + dist <= maxdist) return { 0, under + dist };
ans.push_back(x);
return { 1, maxdist - dist };
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int nums, parks; cin >> nums >> parks;
for (int i = 0; i < nums - 1; i++) {
int a, b; ll w; cin >> a >> b >> w;
adjlist[a].push_back({ b, w });
adjlist[b].push_back({ a, w });
}
ll l = 0, r = inf, opt;
while (l <= r) {
ll m = (l + r) >> 1;
if (m == 8) {
cout << "";
}
dfs(1, -1, inf, m);
if (ans.size() <= parks) {
opt = m;
r = m - 1;
}
else l = m + 1;
ans.clear();
}
cout << opt << '\n';
dfs(1, -1, inf, opt);
set<int> s;
for (auto x : ans) s.insert(x);
for (int i = 1; ans.size() < parks; i++)
if (!s.count(i))
ans.push_back(i);
for (auto x : ans) cout << x << ' ';
return 0;
}Compilation message (stderr)
| # | 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... | ||||
