짱아의 개발 기록장

백준 2660번. 회장뽑기(c++) / BFS 본문

Algorithm/Baekjoon

백준 2660번. 회장뽑기(c++) / BFS

jungahshin 2021. 4. 13. 16:31
반응형

인접리스트를 활용한 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<intint>> ans; // 친구의 수, 번호
 
void bfs()
{
    for(int i=1; i<=n; i++){
        if(connect[i].size()==0continue;
        queue<pair<intint>> 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==-1break;
        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
반응형
Comments