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;
vector<vector<pair<size_t, int>>> graph;
const int oo = INT_MAX / 3;
int& rd(map<int, int>& m, int key)
{
auto it = m.find(key);
if(it == m.end()) it = m.emplace_hint(it, key, +oo);
return it->second;
}
void mini(map<int, int>& m, int key, int value)
{
rd(m, key) = min(rd(m, key), value);
}
void dfs_map_paths(size_t u, int s, int d, map<int, int>& m,
size_t glock = SIZE_MAX, size_t lock = SIZE_MAX)
{
if(d > +oo) return;
mini(m, s, d);
for(auto [v, w] : graph[u])
if(v != lock and v != glock)
dfs_map_paths(v, s + w, d + 1, m, glock, u);
}
size_t gl_vertices;
vector<size_t> gl_parent, gl_subsize;
void dfs_root(size_t u, size_t glock = SIZE_MAX, size_t lock = SIZE_MAX)
{
gl_vertices++;
gl_subsize[u] = 1;
for(auto [v, w] : graph[u])
if(v != lock and v != glock)
gl_parent[v] = u, dfs_root(v, glock, u), gl_subsize[u] += gl_subsize[v];
}
size_t subtree_size(size_t from, size_t to)
{
return from == gl_parent[to] ? gl_subsize[to] : gl_vertices - gl_subsize[from];
}
size_t find_centroid(size_t init, size_t lock = SIZE_MAX)
{
(void)lock;
gl_vertices = 0;
dfs_root(init, lock);
size_t u = init;
while(true)
{
bool any = false;
for(auto [v, w] : graph[u])
if(v != lock and subtree_size(u, v) > subtree_size(v, u))
{ any = true; u = v; break; }
if(not any) break;
}
return u;
}
int solve(size_t init, int k, size_t lock = SIZE_MAX)
{
auto fix = find_centroid(init, lock);
int result = +oo;
map<int, int> pre = {{0, 0}};
for(auto [v, w] : graph[fix])
if(v != lock)
{
map<int, int> cur;
dfs_map_paths(v, w, 1, cur, fix);
for(auto [s, d] : cur)
result = min(result, d + rd(pre, k - s));
for(auto [s, d] : cur)
mini(pre, s, d);
}
for(auto [v, w] : graph[fix])
if(v != lock)
result = min(result, solve(v, k, fix));
return result;
}
int best_path(int _n, int k, int H[][2], int L[])
{
const size_t n = _n;
graph.resize(n);
for(size_t i = 0; i < n - 1; i++)
{
graph[H[i][0]].emplace_back(H[i][1], L[i]);
graph[H[i][1]].emplace_back(H[i][0], L[i]);
}
gl_parent.resize(n);
gl_subsize.resize(n);
int result = solve(0, k);
return result >= +oo ? -1 : result;
}
Compilation message (stderr)
race.cpp: In function 'void dfs_root(size_t, size_t, size_t)':
race.cpp:37:19: warning: unused variable 'w' [-Wunused-variable]
for(auto [v, w] : graph[u])
^
race.cpp: In function 'size_t find_centroid(size_t, size_t)':
race.cpp:57:23: warning: unused variable 'w' [-Wunused-variable]
for(auto [v, w] : graph[u])
^
race.cpp: In function 'int solve(size_t, int, size_t)':
race.cpp:85:19: warning: unused variable 'w' [-Wunused-variable]
for(auto [v, w] : graph[fix])
^
# | 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... |