백준 24479번: 알고리즘 수업-깊이 우선 탐색1 / C++

2023. 3. 14. 15:11개인공부/코딩테스트

https://www.acmicpc.net/problem/24479

 

24479번: 알고리즘 수업 - 깊이 우선 탐색 1

첫째 줄에 정점의 수 N (5 ≤ N ≤ 100,000), 간선의 수 M (1 ≤ M ≤ 200,000), 시작 정점 R (1 ≤ R ≤ N)이 주어진다. 다음 M개 줄에 간선 정보 u v가 주어지며 정점 u와 정점 v의 가중치 1인 양

www.acmicpc.net

 

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