# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
824216 | Mouad_ouj | 경주 (Race) (IOI11_race) | C++17 | 3070 ms | 8088 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int ans=1000001,n,k;
vector<vector< pair<int,int>> > tree;
void dfs(int node,int par,int dis,int cur)
{
for(int x=0;x<tree[node].size();x++)
{
int to=tree[node][x].first;
if(par==to)continue;
if(dis+tree[node][x].second>k)
continue;
if(dis+tree[node][x].second==k)
{
ans=min(ans,cur+1);
continue;
}
dfs(to,node,dis+tree[node][x].second,cur+1);
}
}
int best_path(int N,int K,int bet[][2],int w[])
{
n=N;
k=K;
tree.resize(n+1);
for(int x=0;x<n-1;x++)
{
tree[bet[x][0]].push_back(make_pair(bet[x][1],w[x]));
tree[bet[x][1]].push_back(make_pair(bet[x][0],w[x]));
}
for(int x=0;x<n;x++)
dfs(x,-1,0,0);
if(ans!=1000001)
return ans;
return -1;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |