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
- 안드로이드
- 막내의막무가내 플러터
- 2022년 6월 일상
- 막내의 막무가내 알고리즘
- 막내의막무가내 코틀린
- 막내의막무가내 코볼 COBOL
- 막내의막무가내 안드로이드 코틀린
- 주엽역 생활맥주
- 막내의막무가내 안드로이드
- 막내의막무가내 코틀린 안드로이드
- 막내의막무가내 알고리즘
- flutter network call
- 막내의막무가내 SQL
- 막내의막무가내 일상
- 막내의막무가내 목표 및 회고
- 부스트코스에이스
- 막내의막무가내
- 막내의막무가내 플러터 flutter
- 막무가내
- 막내의 막무가내
- 주택가 잠실새내
- 프로그래머스 알고리즘
- 막내의막무가내 rxjava
- 막내의막무가내 프로그래밍
- 부스트코스
- 안드로이드 sunflower
- 막내의막무가내 안드로이드 에러 해결
- 프래그먼트
- 안드로이드 Sunflower 스터디
- Fragment
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[알고리즘] 백준 1753 최단경로 -최단경로, 다익스트라, 그래프- 자바 본문
728x90
백준 최단경로 단계별풀기의 첫번째 문제입니다.
최단경로의 가장 베이스적인 문제입니다.
풀이는 주석에 적어놓았습니다.
또 설명은 다음 블로그에서 그림과 함께 잘 해놓으셨습니다. ㅎㅎ
[Java]
import java.util.ArrayList;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.Scanner;
class Main {
static ArrayList<Node>[] list;
private static int v;
private static int e;
private static int start;
private static int[] distance;
private static int INF = Integer.MAX_VALUE;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
v = sc.nextInt(); //정점개수
e = sc.nextInt(); //간선개수
start = sc.nextInt(); //시작정점
list = new ArrayList[v + 1]; //정점 인접리스트
distance = new int[v + 1]; //시작점과 다른 정점간의 최단경로
for (int i = 1; i <= v; i++) {
list[i] = new ArrayList<>();
}
//초기화
Arrays.fill(distance, INF);
distance[start] = 0;
for (int i = 0; i < e; i++) {
int u = sc.nextInt(); //출발
int v = sc.nextInt(); //도착지
int w = sc.nextInt(); //가중치
list[u].add(new Node(v, w));
}
dijkstra();
for (int i = 1; i <= v; i++) {
if (distance[i] == INF) {
System.out.println("INF");
} else {
System.out.println(distance[i]);
}
}
}
private static void dijkstra() {
PriorityQueue<Node> queue = new PriorityQueue<>();
queue.add(new Node(start, 0));
while (!queue.isEmpty()) {
Node node = queue.poll();
int vertex = node.vertex;
int weight = node.weight;
if (distance[vertex] < weight) { //지금께 더 가중치가 크면 갱신할 필요가 없다.
continue;
}
for (int i = 0; i < list[vertex].size(); i++) {//해당 정점과 연결된 것들 탐색
int vertex2 = list[vertex].get(i).vertex;
int weight2 = list[vertex].get(i).weight + weight;
if (distance[vertex2] > weight2) { //지금께 더 최단경로라면 갱신해준다.
distance[vertex2] = weight2;
queue.add(new Node(vertex2, weight2));
}
}
}
}
private static class Node implements Comparable<Node> { //우선순위큐로 성능개선(안하면 시간초과뜸)
int vertex;
int weight;
public Node(int vertex, int weight) {
this.vertex = vertex;
this.weight = weight;
}
@Override
public int compareTo(Node o) {
return weight - o.weight;
}
}
}
[2020-11-27 복습]
import java.util.ArrayList;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.Scanner;
class Main {
static ArrayList<Node>[] list;
private static int V;
private static int E;
private static int[] distance;
private static int start;
private static int INF = Integer.MAX_VALUE;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
V = sc.nextInt();
E = sc.nextInt();
start = sc.nextInt();
list = new ArrayList[V + 1];
distance = new int[V + 1];
for (int i = 1; i <= V; i++) {
list[i] = new ArrayList<>();
}
Arrays.fill(distance, INF);
distance[start] = 0;
for (int i = 0; i < E; i++) {
int u = sc.nextInt();
int v = sc.nextInt();
int w = sc.nextInt();
list[u].add(new Node(v, w));
}
dijkstra();
for (int i = 1; i <= V; i++) {
if (distance[i] == INF) {
System.out.println("INF");
} else {
System.out.println(distance[i]);
}
}
}
private static void dijkstra() {
PriorityQueue<Node> queue = new PriorityQueue<>();
queue.add(new Node(start, 0));
while (!queue.isEmpty()) {
Node node = queue.poll();
if (distance[node.vertex] < node.edge) {
continue;
}
for (int i = 0; i < list[node.vertex].size(); i++) {
Node node2 = list[node.vertex].get(i);
int vertex2 = node2.vertex;
int edge2 = node2.edge + node.edge;
if (distance[vertex2] > edge2) {
distance[vertex2] = edge2;
queue.add(new Node(vertex2, edge2));
}
}
}
}
public static class Node implements Comparable<Node> {
int vertex;
int edge;
public Node(int vertex, int edge) {
this.vertex = vertex;
this.edge = edge;
}
@Override
public int compareTo(Node o) {
return edge - o.edge;
}
}
}
댓글과 공감은 큰 힘이 됩니다. 감사합니다. !!
728x90
'알고리즘 > 다익스트라' 카테고리의 다른 글
[알고리즘] 백준 4485 녹색 옷 입은 애가 젤다지? -다익스트라 + BFS, 최단경로 - 자바 코틀린 (0) | 2021.04.12 |
---|---|
[알고리즘] 백준 18352 특정 거리의 도시 찾기 -최단경로, 다익스트라- 자바 (0) | 2021.04.11 |
[알고리즘] 프로그래머스 배달 -최단경로, 다익스트라- 자바Summer/Winter Coding(~2018) (0) | 2021.03.24 |
[알고리즘] 백준 11779 최소비용 구하기 2 -다익스트라, 최단경로- (2) | 2020.12.27 |
[알고리즘] 백준 1504 특정한 최단 경로 -최단경로, 다익스트라- 자바 (0) | 2020.11.27 |
Comments