forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.cpp
53 lines (45 loc) · 1.38 KB
/
1.cpp
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
#include <bits/stdc++.h>
using namespace std;
// 도시의 개수, 도로의 개수, 거리 정보, 출발 도시 번호
int n, m, k, x;
vector<int> graph[300001];
// 모든 도시에 대한 최단 거리 초기화
vector<int> d(300001, -1);
int main(void) {
cin >> n >> m >> k >> x;
// 모든 도로 정보 입력 받기
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
graph[a].push_back(b);
}
// 출발 도시까지의 거리는 0으로 설정
d[x] = 0;
// 너비 우선 탐색(BFS) 수행
queue<int> q;
q.push(x);
while (!q.empty()) {
int now = q.front();
q.pop();
// 현재 도시에서 이동할 수 있는 모든 도시를 확인
for (int i = 0; i < graph[now].size(); i++) {
int nextNode = graph[now][i];
// 아직 방문하지 않은 도시라면
if (d[nextNode] == -1) {
// 최단 거리 갱신
d[nextNode] = d[now] + 1;
q.push(nextNode);
}
}
}
// 최단 거리가 K인 모든 도시의 번호를 오름차순으로 출력
bool check = false;
for (int i = 1; i <= n; i++) {
if (d[i] == k) {
cout << i << '\n';
check = true;
}
}
// 만약 최단 거리가 K인 도시가 없다면, -1 출력
if (!check) cout << -1 << '\n';
}