https://www.acmicpc.net/problem/2660
[난이도] Gold5
[유형] BFS
[풀이]
1~N의 모든 회원을 시작점으로 BFS를 돌리면서 가장 먼 회원과의 거리를 구한 뒤 point[i]에 저장한다.
point[i] (i:1~N) 중 가장 적은 값을 가지고 있는 회원들이 회장 후보이다.
#include <cstdio>
#include <queue>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
int N,point[51],visit[51];
vector<int> adj[51];
int sol(int k){
memset(visit,0,sizeof(visit));
queue<int> q;
visit[k]=1;
q.push(k);
int ret=0;
while(!q.empty()){
int qf = q.front(); q.pop();
ret=max(ret,visit[qf]);
for(int nxt : adj[qf]){
if(!visit[nxt]){
visit[nxt]=visit[qf]+1;
q.push(nxt);
}
}
}
return ret;
}
int main(){
scanf("%d",&N);
while(1){
int a,b;
scanf("%d%d",&a,&b);
if(a==-1) break;
adj[a].push_back(b);
adj[b].push_back(a);
}
int mv = 1e7;
vector<int> ans;
for(int i=1;i<=N;i++) {
point[i]=sol(i);
mv=min(mv,point[i]);
}
for(int i=1;i<=N;i++)
if(point[i]==mv) ans.push_back(i);
printf("%d %d\n",mv-1,ans.size());
for(auto a : ans) printf("%d ",a);
}
https://github.com/has2/Problem-Solving/blob/master/boj-solved.ac/Gold5/2660.cpp
'Problem-Solving > BOJ' 카테고리의 다른 글
[BOJ/백준][Gold5] 2023 : 신기한 소 (C++) (0) | 2021.04.25 |
---|---|
[BOJ/백준][Gold5] 11000 : 강의실 배정 (C++) (0) | 2021.04.25 |
[BOJ/백준][Gold5] 13398 : 연속합 2 (C++) (0) | 2021.04.25 |
[BOJ/백준][Gold5] 7662 : 이중 우선순위 큐 (C++) (0) | 2021.04.25 |
[BOJ/백준][Gold5] 13023 : ABCDE (C++) (0) | 2021.03.25 |