본문 바로가기
알고리즘/그래프

[java 백준] 골드 4/ 1967번 트리의 지름

by Meaning_ 2022. 1. 21.
728x90
반응형

 

https://www.acmicpc.net/problem/1967

 

1967번: 트리의 지름

파일의 첫 번째 줄은 노드의 개수 n(1 ≤ n ≤ 10,000)이다. 둘째 줄부터 n-1개의 줄에 각 간선에 대한 정보가 들어온다. 간선에 대한 정보는 세 개의 정수로 이루어져 있다. 첫 번째 정수는 간선이 연

www.acmicpc.net

 

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
64
65
66
67
68
69
70
71
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
 
public class Main {
 
    public static class Node {
        int node;
        int len;
 
        public Node(int node, int len) {
            this.len = len;
            this.node = node;
        }
 
    }
 
    public static int n;
    public static boolean[] visit;
    public static List<Node> list[];
 
    public static int realNode;
    public static int max;
 
    public static void Dfs(int x, int len) {
 
        if (len > max) {
            max = len;
            realNode = x;
        }
 
        visit[x] = true;
        for (Node nodes : list[x]) {
            if (!visit[nodes.node]) {
                visit[nodes.node] = true;
                Dfs(nodes.node, len + nodes.len);
            }
        }
 
    }
 
    public static void main(String[] args) {
 
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
 
        list = new ArrayList[n + 1];
 
        for (int i = 0; i < n + 1; i++) {
            list[i] = new ArrayList<Node>();
        }
 
        for (int i = 0; i < n - 1; i++) {
            int num = sc.nextInt();
            int node = sc.nextInt();
            int len = sc.nextInt();
            list[num].add(new Node(node, len));
            list[node].add(new Node(num, len));
 
        }
        visit = new boolean[n + 1];
        Dfs(10);
        visit = new boolean[n + 1];
        Dfs(realNode, 0);
 
        System.out.println(max);
 
    }
 
}
 
cs

 

다익스트라 알고리즘

https://m.blog.naver.com/ndb796/221234424646

 

23. 다익스트라(Dijkstra) 알고리즘

다익스트라(Dijkstra) 알고리즘은 다이나믹 프로그래밍을 활용한 대표적인 최단 경로(Shortest Path) 탐...

blog.naver.com

https://bumbums.tistory.com/4

 

자바로 만드는 다익스트라 (dijkstra) 알고리즘

다익스트라 알고리즘은 그래프에서 출발점에서 목표점까지의 최단거리를 구할 때 사용하는 알고리즘 입니다. 다익스트라를 사용할 때 사용하는 변수는 두개가 있습니다. int distance[] = new int[n+1]

bumbums.tistory.com

 

다익스트라 알고리즘은 출발점부터 목표점까지 최단거리를 찾는데 쓰이는 알고리즘이다.

해당 노드를 방문했는지 체크하는 visit[]배열과 최단거리를 저장하는 변수 min이 있으면된다. 이 알고리즘에 대한 설명은 윗글에서 너무 잘 해주셔서 알고리즘 자체가 궁금하면 윗글을 보면되고, 나는 1967번과 관련된 다익스트라 알고리즘을 정리해볼 것이다. 

 

다익스트라 알고리즘을 반대로 생각해보면 그냥 min을 max로 바꾸고, 전체적인 생각을 뒤집기만 하면 우리가 원하는

최장거리를 구할 수 있다.

 

임의의 정점을 출발점이라 하고, 그걸 1이라 하자.

DFS(1,0) --> 시작노드에는 길이가 0임

호출하면서 가장 거리가 먼 노드를 realNode에 넣어준다.

이후 DFS(realNode,0)을 해줘서 realNode에서 가장 먼 노드까지의 길이를 max에 담아준다. 

 

 


1967번 질의응답 중에 좋은 답변이 있어서 가져와봤다. 이 내용도 기억해두자. 

 

https://www.acmicpc.net/board/view/59780

 

글 읽기 - 이 문제 다익스트라로 풀면 안되나요???

댓글을 작성하려면 로그인해야 합니다.

www.acmicpc.net

 

그래프일 경우 트리일 경우
간선의 가중치 모두 동일할 때 -> BFS
간선의 가중치 모두 다름 -> DFS
BFS,DFS 모두 사용 가능 
두 정점을 잇는 경로가 유일함, 거리가 갱신되는 과정이 없기 때문

 

728x90
반응형

댓글