250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 주택가 잠실새내
- 안드로이드 sunflower
- 막내의 막무가내 알고리즘
- 부스트코스에이스
- 막내의막무가내 플러터
- 막내의막무가내 rxjava
- 주엽역 생활맥주
- 막내의막무가내 안드로이드
- 막내의막무가내 알고리즘
- 막무가내
- 프로그래머스 알고리즘
- 막내의 막무가내
- flutter network call
- 막내의막무가내 안드로이드 코틀린
- 안드로이드 Sunflower 스터디
- 막내의막무가내 SQL
- 막내의막무가내 프로그래밍
- 막내의막무가내 코틀린 안드로이드
- 막내의막무가내 코볼 COBOL
- 막내의막무가내 코틀린
- 안드로이드
- 부스트코스
- 막내의막무가내 일상
- 막내의막무가내
- 막내의막무가내 안드로이드 에러 해결
- 막내의막무가내 플러터 flutter
- 2022년 6월 일상
- 막내의막무가내 목표 및 회고
- Fragment
- 프래그먼트
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[알고리즘] 백준 11779 최소비용 구하기 2 -다익스트라, 최단경로- 본문
728x90
백준 다익스트라 분류 문제에 있는 최소비용 구하기 2 입니다.
지나간 도시의 개수와 경로도 출력해야하는 특징이 있는 문제였습니다.
나머지는 원래 다익스트라 풀던대로 풀이했습니다.
P.S 그리고 미리 말하면 예제에서는 출력이 1 3 5 가 나오는데 제 갈 수 있는 최단경로가 여러개가 생길 수 있기 떄문에 1 4 5 도 맞습니다.
//역추적
Stack<Integer> stack = new Stack<>();
while (true) {
stack.push(endNode);
endNode = route[endNode];
if (endNode == startNode) {
stack.push(endNode);
break;
}
}
while (!stack.isEmpty()) {
System.out.print(stack.pop() + " ");
}
while (!queue.isEmpty()) {
Node node = queue.poll();
int vertex = node.vertex;
int weight = node.weight;
if (vertex == endNode) break;
if (distance[vertex] < weight) continue;
for (int i = 0; i < nodeList[vertex].size(); i++) {
int nextVertex = nodeList[vertex].get(i).vertex;
int nextWeight = nodeList[vertex].get(i).weight + weight;
if (distance[nextVertex] > nextWeight) {
distance[nextVertex] = nextWeight;
route[nextVertex] = vertex; //역추적을 위한 배열
queue.offer(new Node(nextVertex, nextWeight));
}
}
}
지나간 경로를 구하기 위해서 역추적 방법을 사용했습니다.
route[] 배열을 생성하여 최단경로를 갱신할때마다 route[이후노드번호] = 이전노드번호 로 저장을 하고 나중에 도착노드 부터 역추적하여 방문과정을 구했습니다.
풀이는 다음과 같습니다.
[Java]
import java.util.*;
class Main {
private static int INF = Integer.MAX_VALUE;
private static int[] distance;
private static int[] route; //역추적을 위한
private static ArrayList<Node>[] nodeList;
private static int n; //도시의 개수
private static int m; //버스의 개수
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
m = sc.nextInt();
nodeList = new ArrayList[n + 1];
for (int i = 1; i <= n; i++) {
nodeList[i] = new ArrayList<>();
}
for (int i = 0; i < m; i++) {
int start = sc.nextInt();
int end = sc.nextInt();
int weight = sc.nextInt();
nodeList[start].add(new Node(end, weight));
}
int startNode = sc.nextInt();
int endNode = sc.nextInt();
System.out.println(dijkstra(startNode, endNode));
//역추적
Stack<Integer> stack = new Stack<>();
while (true) {
stack.push(endNode);
endNode = route[endNode];
if (endNode == startNode) {
stack.push(endNode);
break;
}
}
while (!stack.isEmpty()) {
System.out.print(stack.pop() + " ");
}
}
private static int dijkstra(int startNode, int endNode) {
route = new int[n + 1];
distance = new int[n + 1];
Arrays.fill(distance, INF);
distance[startNode] = 0;
PriorityQueue<Node> queue = new PriorityQueue<>();
queue.add(new Node(startNode, 0));
while (!queue.isEmpty()) {
Node node = queue.poll();
int vertex = node.vertex;
int weight = node.weight;
if (vertex == endNode) break;
if (distance[vertex] < weight) continue;
for (int i = 0; i < nodeList[vertex].size(); i++) {
int nextVertex = nodeList[vertex].get(i).vertex;
int nextWeight = nodeList[vertex].get(i).weight + weight;
if (distance[nextVertex] > nextWeight) {
distance[nextVertex] = nextWeight;
route[nextVertex] = vertex;
queue.offer(new Node(nextVertex, nextWeight));
}
}
}
return distance[endNode];
}
private static class Node implements Comparable<Node> {
int vertex;
int weight;
Node(int vertex, int weight) {
this.vertex = vertex;
this.weight = weight;
}
@Override
public int compareTo(Node o) {
return weight - o.weight;
}
}
}
댓글과 공감은 큰 힘이 됩니다. 감사합니다. !!
728x90
'알고리즘 > 다익스트라' 카테고리의 다른 글
[알고리즘] 백준 4485 녹색 옷 입은 애가 젤다지? -다익스트라 + BFS, 최단경로 - 자바 코틀린 (0) | 2021.04.12 |
---|---|
[알고리즘] 백준 18352 특정 거리의 도시 찾기 -최단경로, 다익스트라- 자바 (0) | 2021.04.11 |
[알고리즘] 프로그래머스 배달 -최단경로, 다익스트라- 자바Summer/Winter Coding(~2018) (0) | 2021.03.24 |
[알고리즘] 백준 1504 특정한 최단 경로 -최단경로, 다익스트라- 자바 (0) | 2020.11.27 |
[알고리즘] 백준 1753 최단경로 -최단경로, 다익스트라, 그래프- 자바 (0) | 2020.11.26 |
Comments