시간 & 메모리 제한
문제
입력 & 출력
예제
자료구조를 이용한 문제풀이
package com.Back;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.StringTokenizer;
public class Back_11725 {
static int num;
static ArrayList<Integer>[] tree;
static boolean [] isSelected;
static int parent[];
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
num = Integer.parseInt(br.readLine());
//연결
tree = new ArrayList[num+1];
isSelected = new boolean[num+1];
parent = new int[num+1];
for(int i=1;i<=num;i++) {
tree[i] = new ArrayList<>();
}
for(int i = 1 ; i <num;i++) {
st = new StringTokenizer(br.readLine());
int node1 = Integer.parseInt(st.nextToken());
int node2 = Integer.parseInt(st.nextToken());
tree[node1].add(node2);
tree[node2].add(node1);
}
dfs(1);
for(int i = 2; i <= num ; i++) {
System.out.println(parent[i]);
}
}
private static void dfs(int cnt) {
isSelected[cnt] =true;
for(int n: tree[cnt]) {
if(!isSelected[n]) {
parent[n] = cnt;
dfs(n);
}
}
}
}
부모를 찾는 트리의 부모 찾기 문제입니다.
이 문제를 간단한 dfs를 이용해서 문제를 풀었습니다.
'Algorithm > 백준 알고리즘' 카테고리의 다른 글
백준_10163 색종이(자바) (0) | 2021.04.06 |
---|---|
백준_2583 영역 구하기(자바) / DFS (0) | 2021.04.06 |
백준_1158 요세푸스 문제(자바) / 자료구조 (0) | 2021.04.04 |
백준_3040 백설 공주와 일곱 난쟁이(자바) / for문 or DFS (0) | 2021.04.04 |
백준_7576 토마토(자바) / BFS (0) | 2021.04.03 |