# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
418573 | snasibov05 | 경주 (Race) (IOI11_race) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "race.h"
#include <vector>
using namespace std;
#define oo 1000000000
#define pii pair<int, int>
#define pb push_back
#define f first
#define s second
vector<vector<pii>> ed;
vector<vector<vector<int>>> dp;
void dfs(int cur, int pr, int k){
dp[cur][0][0] = dp[cur][0][1] = 0;
for (auto [to, dist] : ed[cur]){
if (to == pr) continue;
dfs(to, cur, k);
for (int i = 0; i <= k; ++i) {
dp[cur][i][0] = min({dp[cur][i][0], dp[to][i][0], dp[to][i][1]});
if (i - dist >= 0) dp[cur][i][1] = min(dp[cur][i][1], dp[to][i - dist][1] + 1);
}
}
}
int best_path(int n, int k, int h[][2], int l[]){
ed.resize(n);
dp.resize(n);
dp.assign(n, vector<vector<int>>(k+1, vector<int>(2, oo)));
for (int i = 0; i < n - 1; ++i) {
ed[h[i][0]].pb({h[i][1], l[i]});
ed[h[i][1]].pb({h[i][0], l[i]});
}
dfs(0, -1, k);
if (dp[0][k][0] == oo) dp[0][k][0] = -1;
return dp[0][k][0];
}