- Notifications
You must be signed in to change notification settings - Fork 846
/
Copy path4.java
114 lines (96 loc) · 3.96 KB
/
4.java
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
importjava.util.*;
classNodeimplementsComparable<Node> {
privateintindex;
privateintdistance;
publicNode(intindex, intdistance) {
this.index = index;
this.distance = distance;
}
publicintgetIndex() {
returnthis.index;
}
publicintgetDistance() {
returnthis.distance;
}
// 거리(비용)가 짧은 것이 높은 우선순위를 가지도록 설정
@Override
publicintcompareTo(Nodeother) {
if (this.distance < other.distance) {
return -1;
}
return1;
}
}
publicclassMain {
publicstaticfinalintINF = (int) 1e9; // 무한을 의미하는 값으로 10억을 설정
// 노드의 개수(N), 간선의 개수(M)
publicstaticintn, m;
// 시작 노드를 1번 헛간으로 설정
publicstaticintstart = 1;
// 각 노드에 연결되어 있는 노드에 대한 정보를 담는 리스트를 만들기
publicstaticArrayList<ArrayList<Node>> graph = newArrayList<ArrayList<Node>>();
// 최단 거리 테이블 만들기
publicstaticint[] d = newint[20001];
publicstaticvoiddijkstra(intstart) {
PriorityQueue<Node> pq = newPriorityQueue<>();
// 시작 노드로 가기 위한 최단 경로는 0으로 설정하여, 큐에 삽입
pq.offer(newNode(start, 0));
d[start] = 0;
while(!pq.isEmpty()) { // 큐가 비어있지 않다면
// 가장 최단 거리가 짧은 노드에 대한 정보 꺼내기
Nodenode = pq.poll();
intdist = node.getDistance(); // 현재 노드까지의 비용
intnow = node.getIndex(); // 현재 노드
// 현재 노드가 이미 처리된 적이 있는 노드라면 무시
if (d[now] < dist) continue;
// 현재 노드와 연결된 다른 인접한 노드들을 확인
for (inti = 0; i < graph.get(now).size(); i++) {
intcost = d[now] + graph.get(now).get(i).getDistance();
// 현재 노드를 거쳐서, 다른 노드로 이동하는 거리가 더 짧은 경우
if (cost < d[graph.get(now).get(i).getIndex()]) {
d[graph.get(now).get(i).getIndex()] = cost;
pq.offer(newNode(graph.get(now).get(i).getIndex(), cost));
}
}
}
}
publicstaticvoidmain(String[] args) {
Scannersc = newScanner(System.in);
n = sc.nextInt();
m = sc.nextInt();
// 그래프 초기화
for (inti = 0; i <= n; i++) {
graph.add(newArrayList<Node>());
}
// 모든 간선 정보를 입력받기
for (inti = 0; i < m; i++) {
inta = sc.nextInt();
intb = sc.nextInt();
// a번 노드와 b번 노드의 이동 비용이 1이라는 의미(양방향)
graph.get(a).add(newNode(b, 1));
graph.get(b).add(newNode(a, 1));
}
// 최단 거리 테이블을 모두 무한으로 초기화
Arrays.fill(d, INF);
// 다익스트라 알고리즘을 수행
dijkstra(start);
// 가장 최단 거리가 먼 노드 번호(동빈이가 숨을 헛간의 번호)
intmaxNode = 0;
// 도달할 수 있는 노드 중에서, 가장 최단 거리가 먼 노드와의 최단 거리
intmaxDistance = 0;
// 가장 최단 거리가 먼 노드와의 최단 거리와 동일한 최단 거리를 가지는 노드들의 리스트
ArrayList<Integer> result = newArrayList<Integer>();
for (inti = 1; i <= n; i++) {
if (maxDistance < d[i]) {
maxNode = i;
maxDistance = d[i];
result.clear();
result.add(maxNode);
}
elseif (maxDistance == d[i]) {
result.add(i);
}
}
System.out.println(maxNode + " " + maxDistance + " " + result.size());
}
}