이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define MAX 210000
typedef std::pair<int,int> pii;
std::vector<int> con[MAX];
int res = 2e9+10;
int ind;
int* pop;
int dfs(int pos,int prev,int dist){
int max = dist;
int soma = pop[pos];
for(auto&x:con[pos]){
if(x!=prev){
int r = dfs(x,pos,dist+pop[pos]);
max=std::max(max,r);
soma+=r;
}
}
if(max<res){
res=std::min(res,max);
ind=pos;
}
return soma;
}
int LocateCentre(int N, int pp[], int S[], int D[]) {
pop=pp;
for(auto&x:con)x.clear();
res=2e9+10;
for(int i=0;i!=N-1;++i){
con[S[i]].push_back(D[i]);
con[D[i]].push_back(S[i]);
}
int start = 0;
for(int i=0;i!=N;++i)if(con[i].size()==1)start=i;
dfs(start,-1,0);
return ind;
}
# | 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... |