이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
int g,maxi=0;
void dfs(int a,vector<vector<int> >& v,vector<int>& depth,vector<bool>& visto){
if(depth[a]>maxi){
maxi=depth[a];
g=a;
}
visto[a]=true;
for(int x:v[a]){
if(!visto[x]){
depth[x]=depth[a]+1;
dfs(x,v,depth,visto);
}
}
}
void bfs(int a,vector<vector<int> >& v){
int n=v.size();
int cont=0;
vector<bool> visto(n,false);
vector<int> sol;
queue<int> q;
q.push(a);
visto[a]=true;
while(!q.empty()){
int nodo=q.front();
q.pop();
for(int x:v[nodo]){
if(!visto[x]){
visto[x]=true;
q.push(x);
}
}
if(v[nodo].size()==1)sol.push_back(nodo+1);
}
int k=sol.size();
if(k%2){
cout<<k/2+1<<'\n';
for(int i=0;i<k/2;i++){
cout<<sol[i]<<' '<<sol[k/2+i]<<'\n';
}
cout<<sol[k-1]<<' '<<sol[0]<<'\n';
}
else{
cout<<k/2<<'\n';
for(int i=0;i<k/2;i++){
cout<<sol[i]<<' '<<sol[k/2+i]<<'\n';
}
}
}
int main(){
int n,a,b;
cin>>n;
vector<vector<int> >v(n,vector<int>());
for(int i=0;i<n-1;i++){
cin>>a>>b;
a--;b--;
v[a].push_back(b);
v[b].push_back(a);
}
vector<bool> visto(n,false);
vector<int> depth(n,0);
dfs(0,v,depth,visto);
bfs(g,v);
}
컴파일 시 표준 에러 (stderr) 메시지
net.cpp: In function 'void bfs(int, std::vector<std::vector<int> >&)':
net.cpp:21:6: warning: unused variable 'cont' [-Wunused-variable]
21 | int cont=0;
| ^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |