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
- DirectX11
- Unreal Engine5
- 줄 세우기
- baekjoon
- 프로그래머스
- softeer
- RVO
- UnrealEngine4
- algorithm
- NRVO
- winapi
- GeeksForGeeks
- C
- 팰린드롬 만들기
- UE5
- C++
- 언리얼엔진5
- const
- DeferredRendering
- RootMotion
- Frustum
- 2294
- directx
- Programmers
- 오블완
- 1563
- IFileDialog
- UnrealEngine5
- 백준
- 티스토리챌린지
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 18352번 :: 특정 거리의 도시 찾기 본문
https://www.acmicpc.net/problem/18352
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
|
int n, m, k, x, a, b;
vector<vector<int>> graph(300001);
int dist[300001];
vector<int> answers;
void BFS()
{
memset(dist, 0x3f, sizeof(dist));
dist[x] = 0;
queue<int> q;
q.push(x);
while (!q.empty())
{
int curNode = q.front();
q.pop();
for (int i = 0; i < graph[curNode].size(); ++i)
{
int nextNode = graph[curNode][i];
if (dist[nextNode] == 0x3f3f3f3f)
{
dist[nextNode] = dist[curNode] + 1;
q.push(nextNode);
if (dist[nextNode] == k) answers.push_back(nextNode);
}
}
}
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> m >> k >> x;
for (int i = 0; i < m; ++i)
{
cin >> a >> b;
graph[a].push_back(b);
}
BFS();
if (answers.size() == 0) printf("%d", -1);
else
{
sort(answers.begin(), answers.end());
for (int i = 0; i < answers.size(); ++i) printf("%d\n", answers[i]);
}
}
|
cs |
요구하는 숫자와 일치하는 최단거리의 도시들을 구하는 문제인데... 사실 그냥 기본적인 BFS구현할 줄 알면 된다.
생각보다 정답률이 낮길래 무슨 함정이 있나? 했지만 그런건 딱히 없다.
간선의 가중치는 1로 고정이기 때문에, BFS 수행 시 처음 만났을 때가 무조건 최단거리임이 보장된다.
만약 가중치가 제각각이였다면 다익스트라를 사용하면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1956번 : 운동 (0) | 2023.10.12 |
---|---|
[Algorithm]Baekjoon 2458번 : 제출 (0) | 2023.10.12 |
[Algorithm]Baekjoon 4485번 :: 녹색 옷 입은 애가 젤다지? (0) | 2023.10.12 |
[Algorithm]Baekjoon 1261번 :: 알고스팟 (1) | 2023.10.12 |
[Algorithm]Baekjoon 12908번 :: 텔레포트 3 (2) | 2023.10.11 |