# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
848905 | Mr_Ph | 경주 (Race) (IOI11_race) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "race.h"
#include "grader.cpp"
#include<bits/stdc++.h>
using namespace std;
vector<int>vs;
vector<int>vs1;
vector<vector<pair<int,int>>>adj;
int ans=1e9;
int pog=0;
void dfs(int node,int lol,int sum)
{
vs[node]=true;
if(sum>pog)
return;
if(sum==pog)
{
ans=min(ans,lol);
return;
}
for(auto i:adj[node])
{
if(!vs[i.first]){
// cout<<node<<" "<<i.first<<" "<<i.second<<endl;
dfs(i.first,lol+1,sum+i.second);
}
}
}
int best_path(int n, int k, int h[][2], int l[])
{
pog=k;
adj.resize(n+1);
vs.resize(n+1);
vs1=vs;
for(int i=0;i<n-1;i++)
{
// cout<<h[i][0]<<" "<<h[i][1]<<" "<<l[i]<<endl;
adj[h[i][0]].push_back({h[i][1],l[i]});
adj[h[i][1]].push_back({h[i][0],l[i]});
}
for(int i=0;i<n;i++)
{
vs=vs1;
dfs(i,0,0);
//cout<<ans<<endl;
}
if(ans==1e9)ans=-1;
return ans;
}