이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "race.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5+5;
const int INF = 1e9;
vector <pair <int, int>> g[N];
int ans, k, used[N], dp[N][105];
void dfs(int v) {
used[v] = 1;
for (int i = 1; i <= k; i ++) dp[v][i] = INF;
for (auto i: g[v]) {
if (!used[i.first]) {
dfs(i.first);
for (int j = 1; j <= k; j ++) {
if (j - i.second >= 0) {
dp[v][j] = min(dp[v][j], dp[i.first][j-i.second] + 1);
}
}
}
}
}
int best_path(int N, int K, int H[][2], int L[])
{
k = K;
for (int i = 0; i < N; i ++) {
g[H[i][0]].push_back({H[i][1], L[i]});
g[H[i][1]].push_back({H[i][0], L[i]});
}
dfs(0);
int ans = INF;
for (int i = 0; i < N; i ++) {
ans = min(ans, dp[i][k]);
}
if (ans == INF) ans = -1;
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... |