제출 코드
- 사용 알고리즘 :
BFS
루트노드에서 시작해서, 아래로 내려가면서 리프노드를 찾아주었다.
중간에 제거되는 노드는 큐에 넣지 않도록 해서 문제를 풀었다.
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
package gold;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
import java.util.StringTokenizer;
public class G1068_tree {
static int N, root, remove;
static List<Integer>[] childs;
static boolean visit[];
static int go(int root) {
if(root==remove) return 0;
Queue<Integer> queue = new LinkedList<Integer>();
queue.add(root);
visit[root] = true;
int cnt = 0;
while(!queue.isEmpty()) {
int size = queue.size();
for(int s=0; s<size; s++) {
int now = queue.poll();
int tmp=0;
for(int c : childs[now]) {
if(c != remove) {
queue.add(c);
tmp++;
}
visit[c] = true;
}
if(tmp==0) cnt++;
}
}
return cnt;
}
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
childs = new List[N];
for(int i=0; i<N; i++) childs[i] = new ArrayList<Integer>();
StringTokenizer st = new StringTokenizer(br.readLine());
for(int i=0; i<N; i++) {
int parent = Integer.parseInt(st.nextToken());
if(parent==-1) root = i;
else childs[parent].add(i);
}
remove = Integer.parseInt(br.readLine());
visit = new boolean[N];
System.out.println(go(root));
}
}