티스토리 뷰
기본 구현
class Dijkstra {
public static final int INF = 987654321;
public static class Pair implements Comparable<Pair> {
private final int x;
private final int y;
public Pair(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
@Override
public int compareTo(Pair o) {
if (this.x == o.x) {
return this.y - o.y;
}
return this.x - o.x;
}
}
private Dijkstra() {
}
/*
* Queue`s Element Pair = (cost, vertex)
* Graph`s Element Pair = (dest, cost)
* n : number of vertices ( n >= 1 )
* start : start vertex number ( start >= 1 )
* return : shortest cost
* result[i] = shortest cost for start to i ( 1 <= i <= n )
* if result[i] is INF, can't approach at i
* */
public static int[] dijkstra(int n, int start, List<List<Pair>> graph) {
int[] cost = new int[n];
Arrays.fill(cost, INF);
PriorityQueue<Pair> q = new PriorityQueue<>();
q.offer(new Pair(0, start));
cost[start] = 0;
while (!q.isEmpty()) {
Pair cur = q.poll();
int nowCost = cur.getX();
int nowVertex = cur.getY();
if (cost[nowVertex] != nowCost) {
continue;
}
for (Pair next : graph.get(nowVertex)) {
int nextVertex = next.getX();
int nextCost = nowCost + next.getY();
if (nextCost < cost[nextVertex]) {
cost[nextVertex] = nextCost;
q.offer(new Pair(nextCost, nextVertex));
}
}
}
return cost;
}
}
'코딩테스트 > 코드 스니펫' 카테고리의 다른 글
[코드 스니펫]트라이(Trie) 자료구조 (0) | 2022.01.16 |
---|---|
[코드 스니펫]최대 공약수(GCD), 최소 공배수(LCM) (0) | 2022.01.16 |
[코드 스니펫]서로소 집합(Union-Find) 자료구조 (0) | 2022.01.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 정렬
- 쓰레드
- set
- 스택
- dsu
- 코드 스니펫
- 탐욕법
- 카카오
- Uber
- 스트림
- 프로그래머스
- dp
- JPA
- 우선순위큐
- 구현
- 연결리스트
- k8s
- dfs
- 문자열
- 코딩인터뷰
- kotlin
- BFS
- 해쉬
- 회고
- 알고리즘
- TDD
- 오늘의집
- 비트연산
- sql
- 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 |
글 보관함