이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "race.h"
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
using pii = pair<int, int>;
const int MAXN = 2e5 + 5;
const int oo32 = 2e9;
int N, K;
vector<pii> adj[MAXN];
map<int, int> res[MAXN];
int ans = oo32;
void DFS(int u, const int N, const int K, i64 c = 0, int depth = 0, int p = -1) {
res[u][c] = depth;
for(auto [v, w] : adj[u]) {
if(v == p) continue;
DFS(v, c + w, depth + 1, u);
if(res[u].size() < res[v].size()) swap(res[u], res[v]);
for(auto [x, y] : res[v]) {
if(res[u].find(c + K - (x - c)) != res[u].end())
ans = min(ans, y + res[u][c + K - (x - c)] - 2 * depth);
}
for(auto [x, y] : res[v]) {
if(res[u].find(x) != res[u].end())
res[u][x] = min(res[u][x], y);
else res[u][x] = y;
}
}
}
int best_path(int N, int K, int H[][2], int L[]) {
for(int i = 0; i < N; i++) {
int u = H[i][0];
int v = H[i][1];
int w = L[i];
adj[u].emplace_back(v, w);
adj[v].emplace_back(u, w);
}
DFS(0, N, K);
return (ans > N ? -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... |