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
- flutter network call
- 프로그래머스 알고리즘
- 막무가내
- 막내의막무가내 일상
- 막내의 막무가내
- 2022년 6월 일상
- 막내의막무가내 알고리즘
- 막내의막무가내 플러터 flutter
- 막내의막무가내 안드로이드
- 막내의막무가내 프로그래밍
- 막내의막무가내 안드로이드 코틀린
- 안드로이드
- 막내의막무가내 목표 및 회고
- 부스트코스에이스
- 부스트코스
- 주택가 잠실새내
- 안드로이드 Sunflower 스터디
- 프래그먼트
- 막내의막무가내 코틀린 안드로이드
- Fragment
- 막내의 막무가내 알고리즘
- 막내의막무가내 코볼 COBOL
- 주엽역 생활맥주
- 막내의막무가내
- 막내의막무가내 안드로이드 에러 해결
- 막내의막무가내 코틀린
- 막내의막무가내 rxjava
- 안드로이드 sunflower
- 막내의막무가내 플러터
- 막내의막무가내 SQL
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[알고리즘] 백준 18352 특정 거리의 도시 찾기 -최단경로, 다익스트라- 자바 본문
728x90
백준 다익스트라 유형의 특정 거리의 도시 찾기 문제를 풀어봤습니다. ㅎㅎ
특정 경로에서의 최단경로 즉 1:N의 최단 경로를 구하면 되는 문제이므로 다익스트라 알고리즘을 사용하면 됩니다. (정점 개수가 V, 간선 개수가 E일 때 시간복잡도는 O(ElogV)입니다.)
풀이는 다음과 같습니다.
[Java]
import java.util.ArrayList;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.Scanner;
class Main {
// (2 ≤ N ≤ 300,000, 1 ≤ M ≤ 1,000,000, 1 ≤ K ≤ 300,000, 1 ≤ X ≤ N)
private static int N; // 도시의 개수
private static int M; // 도로의 개수
private static int K; // 거리 정보
private static int X; // 출발 도시 번호
private static int[] distances; // 출발도시인 X와의 최단경로
private static ArrayList<Edge>[] edgeList; // 도시 인접리스트
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
M = sc.nextInt();
K = sc.nextInt();
X = sc.nextInt();
// 생성 초기화
distances = new int[N + 1];
edgeList = new ArrayList[N + 1];
Arrays.fill(distances, Integer.MAX_VALUE);
for (int i = 1; i <= N; i++) {
edgeList[i] = new ArrayList<>();
}
// 경로 초기화
for (int i = 0; i < M; i++) {
int start = sc.nextInt();
int end = sc.nextInt();
// A번 도시에서 B번 도시로 이동하는 단방향 도로가 존재
edgeList[start].add(new Edge(end, 1));
}
// 출발도시
distances[X] = 0;
//다익스트라
dijkstra();
int answer = 0;
for (int i=1; i<distances.length; i++){
int distance = distances[i];
if (distance == K) {
System.out.println(i);
answer++;
}
}
if (answer == 0) System.out.println(-1);
}
private static void dijkstra() {
PriorityQueue<Edge> queue = new PriorityQueue<>();
queue.add(new Edge(X, 0));
while (!queue.isEmpty()) {
Edge edge = queue.poll();
int vertex = edge.vertex;
int cost = edge.cost;
if (distances[vertex] < cost) {
continue;
}
for (int i = 0; i < edgeList[vertex].size(); i++) { // 해당 도시와 연결되 있는 도시들 탐색
int vertex2 = edgeList[vertex].get(i).vertex;
int cost2 = edgeList[vertex].get(i).cost + cost;
if (distances[vertex2] > cost2) { // 최단경로 세팅
distances[vertex2] = cost2;
queue.add(new Edge(vertex2, cost2));
}
}
}
}
private static class Edge implements Comparable<Edge> {
int vertex;
int cost;
public Edge(int vertex, int cost) {
this.vertex = vertex;
this.cost = cost;
}
@Override
public int compareTo(Edge o) { //오름차순
return cost - o.cost;
}
}
}
댓글과 공감은 큰 힘이 됩니다. 감사합니다. !!
728x90
'알고리즘 > 다익스트라' 카테고리의 다른 글
[알고리즘] 백준 10282 해킹 -다익스트라- 자바 (0) | 2021.05.08 |
---|---|
[알고리즘] 백준 4485 녹색 옷 입은 애가 젤다지? -다익스트라 + BFS, 최단경로 - 자바 코틀린 (0) | 2021.04.12 |
[알고리즘] 프로그래머스 배달 -최단경로, 다익스트라- 자바Summer/Winter Coding(~2018) (0) | 2021.03.24 |
[알고리즘] 백준 11779 최소비용 구하기 2 -다익스트라, 최단경로- (2) | 2020.12.27 |
[알고리즘] 백준 1504 특정한 최단 경로 -최단경로, 다익스트라- 자바 (0) | 2020.11.27 |
Comments