Game Develop

[Algorithm]Baekjoon 1068번 : 트리 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 1068번 : 트리

MaxLevel 2023. 12. 13. 17:08

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

 

1068번: 트리

첫째 줄에 트리의 노드의 개수 N이 주어진다. N은 50보다 작거나 같은 자연수이다. 둘째 줄에는 0번 노드부터 N-1번 노드까지, 각 노드의 부모가 주어진다. 만약 부모가 없다면 (루트) -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
 
int n, input;
int rootNode = 0;
int deleteNode = 0;
int answer = 0;
vector<vector<int>> graph(51);
 
 
void DFS(int node, int parentNode)
{
    if (node == deleteNode)
    {
        if (parentNode != -1 && graph[parentNode].size() - 1 == 0)
        {
            ++answer;
        }
        return;
    }
 
    if (graph[node].size() == 0)
    {
        ++answer;
        return;
    }
 
    for (int i = 0; i < graph[node].size(); ++i)
    {
        DFS(graph[node][i],node);
    }
}
 
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
 
    cin >> n;
 
    for (int i = 0; i < n; ++i)
    {
        cin >> input;
 
        if (input == -1)
        {
            rootNode = i;
            continue;
        }
 
        graph[input].push_back(i);
    }
 
    cin >> deleteNode;
 
    DFS(rootNode, -1);
    cout << answer;
}
cs

 

주어진대로 구현하면서, 한가지만 유의하면 된다.

특정노드를 삭제하면 부모노드의 자식개수는 1개 줄어드는셈이니, 그거에 따른 처리만 추가해주면 된다.