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
- NRVO
- RVO
- UnrealEngine4
- C++
- 팰린드롬 만들기
- 2294
- RootMotion
- 1563
- GeeksForGeeks
- IFileDialog
- softeer
- Programmers
- C
- 티스토리챌린지
- Unreal Engine5
- Frustum
- baekjoon
- 줄 세우기
- 백준
- DeferredRendering
- 오블완
- DirectX11
- winapi
- UnrealEngine5
- 프로그래머스
- 언리얼엔진5
- UE5
- directx
- algorithm
- const
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1068번 : 트리 본문
https://www.acmicpc.net/problem/1068
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개 줄어드는셈이니, 그거에 따른 처리만 추가해주면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1495번 : 기타리스트 (0) | 2023.12.14 |
---|---|
[Algorithm]Baekjoon 1976번 : 여행 가자 (0) | 2023.12.13 |
[Algorithm]Baekjoon 15486번 : 퇴사 2 (0) | 2023.12.13 |
[Algorithm] Baekjoon 1213번 : 팰린드롬 만들기 (0) | 2023.12.11 |
[Algorithm] Baekjoon 2294번 : 동전 2 (0) | 2023.12.07 |