이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "race.h"
using namespace std;
using ll = int;
const int inf = 1e9, N = 2e5 + 5;
int ans = inf, k;
vector<vector<pair<int, int>>> g(N);
vector<int> par(N, -1), heavy(N), height2(N);
vector<ll> height(N);
vector<set<pair<ll, int>>> st(N);
/*
height[heavy[u]] - height[v] = k +
height[v] - height[u] = k?????
height[heavy[u]] - k - height[u] = height[v]
*/
int dfs(int u) {
heavy[u] = u;
int size = 1, max_child_size = 0;
for (auto [v, w]: g[u]) {
if (par[u] == v) continue;
height[v] = height[u] + w;
height2[v] = height2[u] + 1;
par[v] = u;
int child_size = dfs(v);
if (child_size > max_child_size) {
heavy[u] = heavy[v];
max_child_size = child_size;
}
size += child_size;
}
return size;
}
void dfs2(int u) {
for (auto [v, w]: g[u]) {
if (par[u] == v) continue;
dfs2(v);
}
multiset<pair<ll, int>> shit;
for (auto it: st[heavy[u]]) shit.insert(it);
// cout << u << ' ' << heavy[u] << endl;
for (auto [v, w]: g[u]) {
if (par[u] == v or heavy[u] == heavy[v]) continue;
for (auto it: st[heavy[v]]) {
st[heavy[u]].insert(it);
shit.insert(it);
}
}
// if (u == 1) {
// for (auto it: shit) {
// cout << it.first << ' ' << it.second << endl;
// }
// }
for (auto [v, w]: g[u]) {
if (par[u] == v or heavy[u] == heavy[v]) continue;
for (auto it: st[heavy[v]]) {
shit.erase(shit.find(it));
}
for (auto it: st[heavy[v]]) {
ll need = k - (it.first - height[u]) + height[u];
auto it2 = shit.lower_bound(make_pair(need, 0));
if (it2 != shit.end() and it2->first == need) {
ans = min(ans, it2->second + it.second - 2 * height2[u]);
}
}
for (auto it: st[heavy[v]]) {
shit.insert(it);
}
st[heavy[v]].clear();
}
st[heavy[u]].emplace(height[u], height2[u]);
ll search = k + height[u];
auto it = st[heavy[u]].lower_bound(make_pair(search, 0));
if (it != st[heavy[u]].end() and it->first == search) {
ans = min(ans, it->second - height2[u]);
}
}
int best_path(int n, int K, int H[][2], int L[]) {
k = K;
for (int i = 0; i < n - 1; i++) {
g[H[i][0]].emplace_back(H[i][1], L[i]);
g[H[i][1]].emplace_back(H[i][0], L[i]);
}
// change it
dfs(0);
dfs2(0);
return ans == inf ? -1 : 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... |