이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "traffic.h"
#include<bits/stdc++.h>
using namespace std;
int n;
vector<vector<int>> graf(1e6+9,vector<int>(0));
vector<long long> seg(1e6+9,0);
vector<bool> visited(1e6+9,0);
int zb=0;
void pravi_seg(int node,int cale,vector<int>&niz){
if(visited[node]) return;
visited[node]=true;
seg[node]=niz[node];
for(auto x:graf[node])
pravi_seg(x,node,niz);
for(auto x:graf[node]){
if(x==cale) continue;
seg[node]+=seg[x];
}
}
void dfs(int node,long long mini,int&rez,int cale){
if(visited[node]) return;
visited[node]=true;
long long maxi=0;
maxi=max(maxi,zb-seg[node]);
for(auto x:graf[node]){
if(x==cale) continue;
maxi=max(maxi,seg[node]);
}
mini=min(mini,maxi);
if(mini==maxi)
rez=node;
for(auto x:graf[node])
dfs(x,mini,rez,node);
}
int LocateCentre(int N, int pp[], int S[], int D[]) {
n=N;
vector<int> niz(n);
for(int i=0; i<n; i++){
niz[i]=pp[i];
zb+=niz[i];
}
for(int i=0; i<n-1; i++){
int a=S[i],b=D[i];
graf[a].push_back(b);
graf[b].push_back(a);
}
if(n==1) return 0;
pravi_seg(0,-1,niz);
for(int i=0; i<visited.size(); i++)
visited[i]=false;
int rez=0;
dfs(0,1e15,rez,-1);
/*for(int i=0; i<n; i++)
cout << seg[i] << endl;*/
return rez;
}
컴파일 시 표준 에러 (stderr) 메시지
traffic.cpp: In function 'int LocateCentre(int, int*, int*, int*)':
traffic.cpp:50:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<bool>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for(int i=0; i<visited.size(); i++)
| ~^~~~~~~~~~~~~~~
# | 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... |