문제 링크: https://www.acmicpc.net/problem/6118
<문제 풀이> 그래프, BFS
무방향 그래프의 최단거리를 BFS로 갱신하면 되는데, 1번 정점으로부터 거리가 크거나 같을 때만 next를 push 해주면 된다.
[next 정점 기준]
1번 정점으로부터 거리가 같을때는 정답 vector에 그냥 push 하고
1번 정점으로부터 거리가 멀어지면 정답 vector를 초기화시키고 push 하면 된다.
<C++ 소스 코드>
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
|
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;
int n, m;
int visited[20001];
vector<vector<int> > adj(20001);
vector<int> ans;
int cnt = 1;
void bfs() {
queue<int> q;
q.push(1);
visited[1] = 1;
while (!q.empty()) {
int cur = q.front();
q.pop();
for (auto& next : adj[cur]) {
if (visited[next])continue;
if (visited[cur] + 1 == cnt) {
visited[next] = visited[cur] + 1;
q.push(next);
ans.push_back(next);
}
else if (visited[cur] + 1 > cnt) {
ans.clear();
visited[next] = visited[cur] + 1;
q.push(next);
cnt = visited[next];
ans.push_back(next);
}
}
}
}
int main(void) {
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
cin >> n >> m;
for (int i = 0; i < m; i++) {
int u, v;
cin >> u >> v;
adj[u].push_back(v);
adj[v].push_back(u);
}
bfs();
sort(ans.begin(), ans.end());
cout << ans[0] << " " << visited[ans[0]] - 1 <<" "<< ans.size();
return 0;
}
|
cs |
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 11725번] 트리의 부모 찾기 (0) | 2020.03.26 |
---|---|
[백준 1043번] 거짓말 (0) | 2020.03.25 |
[백준 5567번] 결혼식 (0) | 2020.03.22 |
[백준 2606번] 바이러스 (0) | 2020.03.22 |
[백준 1260번] DFS와 BFS (0) | 2020.03.22 |