티스토리 뷰
풀이
1) 루트 노드에서 dfs를 돌아서 최대 거리인 노드를 찾음
2) 1에서 찾은 노드에서 dfs를 돌아서 최대 거리인 노드까지의 value 값을 더함
3) 출력
주의사항
1) x
package com.baekJoon;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.StringTokenizer;
public class BJ_G4_1967_트리의지름 {
static BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
static StringTokenizer tokens;
static int N,startNode, sumVal;
static List<Node> graph[];
static boolean isVisited[];
public static void main(String[] args) throws NumberFormatException, IOException {
input = new BufferedReader(new StringReader(src));
N = Integer.parseInt(input.readLine());
isVisited = new boolean[N+1];
graph = new ArrayList[N+1];
for(int i=0; i<N+1; i++) {
graph[i] = new ArrayList<Node>();
}
for(int n=1; n<N; n++) {
tokens = new StringTokenizer(input.readLine());
int from = Integer.parseInt(tokens.nextToken());
int to = Integer.parseInt(tokens.nextToken());
int val = Integer.parseInt(tokens.nextToken());
// System.out.println(from+" "+to+" "+val+" ");
graph[from].add(new Node(to, val));
graph[to].add(new Node(from, val));
}
isVisited[1] = true;
dfs(1,0);
Arrays.fill(isVisited, false);
sumVal = 0;
isVisited[startNode] = true;
dfs(startNode,0);
System.out.println(sumVal);
}
private static void dfs(int n, int sum) {
if(sumVal < sum) {
sumVal = sum;
startNode = n;
}
List<Node> childs = graph[n];
for(int i=0; i<childs.size(); i++) {
Node child = childs.get(i);
if(!isVisited[child.n]) {
isVisited[child.n] = true;
dfs(child.n,sum+child.v);
isVisited[child.n] = false;
}
}
}
static class Node{
int n;
int v;
public Node(int n, int v) {
super();
this.n = n;
this.v = v;
}
@Override
public String toString() {
return "Node [n=" + n + ", v=" + v + "]";
}
}
static String src =
"12\r\n" +
"1 2 3\r\n" +
"1 3 2\r\n" +
"2 4 5\r\n" +
"3 5 11\r\n" +
"3 6 9\r\n" +
"4 7 1\r\n" +
"4 8 7\r\n" +
"5 9 15\r\n" +
"5 10 4\r\n" +
"6 11 6\r\n" +
"6 12 10";
}
후기
솔루션을 듣고 푼 문제. 어떻게 하면 최대 지름을 구할 수 있을까 고민했지만 결론은 무조건 dfs를 2번 돌아야 한다는 것이었다.
알면 간단하지만 모르면 어려운 문제.
'Algorithm' 카테고리의 다른 글
[백준] S3 1463 1로 만들기 (java) (0) | 2021.01.18 |
---|---|
[백준] G5 2116 주사위 쌓기 (java) (0) | 2021.01.17 |
[백준] S2 1541 잃어버린 괄호 (java) (0) | 2021.01.17 |
[백준] G5 1405 미친 로봇 (java) (0) | 2021.01.17 |
[백준] G5 3055 탈출 (java) (0) | 2021.01.17 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 우선순위큐
- DFS
- 알고리즘
- S2
- 그리디
- react native
- 코딩새내기
- PriorityQueue
- 다익스트라
- 리액트
- 백트래킹
- g4
- 리액트 네이티브
- BFS
- Spring Boot
- Spring
- 백준
- S3
- 구현
- G5
- react
- 자바
- laugh4mile
- map
- 시뮬레이션
- java
- 현꾸라지
- 객체지향
- 문자열
- SWEA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함