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
- 버퍼비우기
- nextInt
- 인터페이스
- 프림알고리즘
- 생성자
- this
- Encapsulation
- 내부 클래스
- 객체 지향
- enum
- 상속
- 캡슐화
- 제네릭
- polymorphism
- Scanner
- abstract
- 와일드카드
- python
- 17472
- 객체지향
- Final
- 다형성
- inheritance
- 열거형
- 추상 클래스
- 백준
- 최소신장트리
- 추상화
- java
Archives
- Today
- Total
쫑쫑이의 블로그
백준 1167 트리의 지름 Java [트리, DFS] 본문
https://www.acmicpc.net/problem/1167
한 정점에서 가장 먼 거리의 노드 구하고 구한 노드로부터 가장 먼 거리를 리턴하면 된다
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
public class Main {
static int[] vtd;
static int V;
static HashMap<Integer, ArrayList<int[]>> nodes;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
V = Integer.parseInt(br.readLine());
nodes = new HashMap<>();
vtd = new int[V+1];
Arrays.fill(vtd, -1);
for(int v = 0; v < V; v++) {
int[] arr = Arrays.stream(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
ArrayList<int[]> value = new ArrayList<>();
for (int i = 1; i < arr.length-1; i+=2) {
value.add(new int[]{arr[i], arr[i+1]});
}
nodes.put(arr[0], value);
}
vtd[1] = 0;
dfs(1);
dfs(getmax()[0]);
System.out.println(getmax()[1]);
}
static void dfs(int node) {
for (int[] arr : nodes.get(node)) {
if (vtd[arr[0]] == -1) {
vtd[arr[0]] = vtd[node] + arr[1];
dfs(arr[0]);
}
}
}
static int[] getmax() {
int index = 1, len = vtd[index];
for(int i = 2; i <= V; i++) {
if (vtd[i] > len) {
index = i;
len = vtd[i];
}
}
Arrays.fill(vtd, -1);
vtd[index] = 0;
return new int[]{index, len};
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 10830 행렬제곱 Java [분할 정복] (0) | 2022.10.09 |
---|---|
백준 1967 트리의 지름 Java [트리, DFS] (0) | 2022.10.07 |
백준 2263 트리의 순회 Java [트리 순회] (0) | 2022.10.07 |
백준 17070 파이프 옮기기 1 Java [DFS] (0) | 2022.10.05 |
백준 1043 거짓말 Java [DFS] (0) | 2022.10.05 |