백준 24479번: 알고리즘 수업-깊이 우선 탐색1 / C++
2023. 3. 14. 15:11ㆍ개인공부/코딩테스트
https://www.acmicpc.net/problem/24479
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
71
72
|
#include <iostream>
#include <set>
using namespace std;
/*
1. 간선 정렬
2. DFS 함수
3. 방문한 순번
4. 방문여부
*/
set<int>* arr[100001]{};
bool IsVisted[100001]{};
int Count[100001]{};
int Call = 1;
int N, M, R;
void DFS(int index)
{
IsVisted[index] = true;
Count[index] = Call;
++Call;
if (arr[index]->empty())
return;
auto iter = arr[index]->begin();
while (iter != arr[index]->end())
{
if (IsVisted[*iter] == false)
{
DFS(*iter);
}
else
++iter;
}
}
int main(void)
{
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(false);
cin >> N >> M >> R; // 정점, 간선, 시작 정정
for (int i = 1; i <= N; ++i)
{
arr[i] = new set<int>;
}
for (int i = 0; i < M; ++i)
{
int pos1, pos2;
cin >> pos1 >> pos2;
arr[pos1]->insert(pos2);
arr[pos2]->insert(pos1);
}
DFS(R);
for (int i = 1; i <= N; ++i)
{
cout << Count[i] << '\n';
}
return 0;
}
|
cs |
'개인공부 > 코딩테스트' 카테고리의 다른 글
백준 2178번 : 미로 탐색 / C++ (0) | 2023.03.15 |
---|---|
백준 1260번 : DFS와 BFS / C++ (0) | 2023.03.14 |
백준 17299번 : 오등큰수 / C++ (0) | 2023.03.14 |
백준 172938번: 오큰수 / C++ (0) | 2023.03.13 |
백준 9935번 : 문자열 폭발 / C++ (0) | 2023.03.13 |