# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1000625 | nmts | 경주 (Race) (IOI11_race) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "race.h"
using namespace std;
struct Highway {
int to;
int length;
};
void dfs(int node, int parent, int K, int currentLength, int currentHighways, vector<vector<Highway>>& graph, int& minHighways) {
if (currentLength > K) {
return;
}
if (currentLength == K) {
minHighways = min(minHighways, currentHighways);
return;
}
for (const Highway& highway : graph[node]) {
if (highway.to != parent) {
dfs(highway.to, node, K, currentLength + highway.length, currentHighways + 1, graph, minHighways);
}
}
}
int best_path(int N, int K, vector<vector<int>>& H, vector<int>& L) {
vector<vector<Highway>> graph(N);
for (int i = 0; i < N - 1; ++i) {
graph[H[i][0]].push_back({H[i][1], L[i]});
graph[H[i][1]].push_back({H[i][0], L[i]});
}
int minHighways = INT_MAX;
for (int i = 0; i < N; ++i) {
dfs(i, -1, K, 0, 0, graph, minHighways);
}
return (minHighways == INT_MAX) ? -1 : minHighways;
}