Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 스마일게이트
- 식단
- BFS
- 코딩테스트
- Algorithm
- BaekJoon
- 소감
- LIS #Algorithm #요소추적
- 유니온파인드
- c++
- 알고리즘
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 중반부
- 카카오인턴
- 삼성 #코테 #2020상반기 #c++
- 투포인터
- 카카오
- Smilegate
- 서버개발캠프
- 코테
- 1편
- Union-find
- 보석쇼핑
- 백준
Archives
- Today
- Total
짱아의 개발 기록장
백준 2660번. 회장뽑기(c++) / BFS 본문
반응형
인접리스트를 활용한 BFS문제이다.
인접리스트로 친구관계를 모두 형성해놓고 bfs를 통해 level이 얼마나 형성되는지 점수를 매기면 된다.
1~N까지 사람마다 bfs를 돌아서 점수를 매겼고
가장 적은 점수를 가진 사람을 찾았다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// 회장뽑기
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;
int n, a ,b;
vector<int> connect[51];
vector<pair<int, int>> ans; // 친구의 수, 번호
void bfs()
{
for(int i=1; i<=n; i++){
if(connect[i].size()==0) continue;
queue<pair<int, int>> q;
int visited[51] = {0, };
int totalLevel = 0;
q.push(make_pair(i, 0));
while(!q.empty()){
int friends = q.front().first;
int level = q.front().second;
visited[friends] = true;
q.pop();
totalLevel = max(totalLevel, level);
for(int j=0; j<connect[friends].size(); j++){
if(visited[connect[friends][j]]) continue;
visited[connect[friends][j]] = true;
q.push(make_pair(connect[friends][j], level+1));
}
}
ans.push_back(make_pair(totalLevel, i));
}
}
int main()
{
cin>>n;
while(1){
cin>>a>>b;
if(a==-1 && b==-1) break;
connect[a].push_back(b);
connect[b].push_back(a);
}
bfs();
sort(ans.begin(), ans.end());
int ansCnt = 0;
int ansFriends = ans[0].first;
vector<int> Ans;
for(int i=0; i<ans.size(); i++){
if(ans[0].first==ans[i].first){
ansCnt++;
Ans.push_back(ans[i].second);
}
}
cout<<ansFriends<<" "<<ansCnt<<"\n";
for(int i=0; i<Ans.size(); i++){
cout<<Ans[i]<<" ";
}
cout<<"\n";
return 0;
}
|
cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 14916번. 거스름돈(c++) / Greedy (0) | 2021.04.17 |
---|---|
백준 17130번. 토끼가 정보섬에 올라온 이유(c++) / DP (0) | 2021.04.16 |
백준 3079번. 입국심사(c++) / 이분탐색 (1) | 2021.04.13 |
백준 1103번. 게임(c++) / DP+DFS (0) | 2021.04.13 |
백준 3687번. 성냥개비(c++) / DP (0) | 2021.04.12 |
Comments