Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 이분 매칭
- ZuulFilter
- Spring Cloud Config
- 백트래킹
- 구간 트리
- 트리
- 서비스 디스커버리
- Java
- 구현
- BFS
- 스프링 시큐리티
- 주울
- spring boot
- Gradle
- 스택
- 메모이제이션
- 완전 탐색
- spring cloud
- dp
- Logback
- Zuul
- 다익스트라
- docker-compose
- 이분 탐색
- 도커
- 달팽이
- 게이트웨이
- 유레카
- 플로이드 와샬
- 비트마스킹
Archives
- Today
- Total
Hello, Freakin world!
[백준 1916번][Java] 최소비용 구하기 - 다익스트라 본문
주의할 점은 출발지와 도착지가 같지만 가중치가 다른 간선이 주어질 수 있다는 점입니다.
이 점 때문에 인접 행렬이 아니라 인접 리스트로 간선을 표현해야 합니다.
...
/*
최소 비용 구하기
https://www.acmicpc.net/problem/1916
*/
public class Main {
static int n,m;
static long INF = Long.MAX_VALUE;
static long[] cost;
static List<List<Edge>> adj;
public static void main(String[] args) throws IOException {
InputReader reader = new InputReader();
// InputReader reader = new InputReader("testcase.txt");
n = reader.readInt(); //도시의 개수
m = reader.readInt(); //버스의 개수
adj = new ArrayList<>();
for (int i = 0; i <= n; i++) { adj.add(new ArrayList<>()); }
cost = new long[n+1];
Arrays.fill(cost, INF);
for (int i = 0; i < m; i++) {
StringTokenizer st = new StringTokenizer(reader.readLine());
int u = Integer.parseInt(st.nextToken());
int v = Integer.parseInt(st.nextToken());
int cost = Integer.parseInt(st.nextToken());
adj.get(u).add(new Edge(v,cost));
}
StringTokenizer st = new StringTokenizer(reader.readLine());
int start = Integer.parseInt(st.nextToken());
int end = Integer.parseInt(st.nextToken());
System.out.println(diijkstra(start, end));
}
private static long diijkstra(int start, int end) {
Comparator<Node> comparator = (u,v) -> {
if(u.cost >= v.cost) return 1;
else return -1;
};
PriorityQueue<Node> q = new PriorityQueue<>(comparator);
q.add(new Node(start,0));
cost[start] = 0;
while(!q.isEmpty()) {
Node here = q.poll();
if(cost[here.id] < here.cost) continue;
for (int i = 0; i < adj.get(here.id).size(); i++) {
int there = adj.get(here.id).get(i).there;
int weight = adj.get(here.id).get(i).weight;
long nextCost = here.cost + weight;
if(nextCost < cost[there]) {
q.add(new Node(there, nextCost));
cost[there] = nextCost;
}
}
}
return cost[end];
}
}
class Edge {
int there, weight;
public Edge(int there, int weight) {
this.there = there;
this.weight = weight;
}
}
class Node {
int id;
long cost;
public Node(int id, long cost) {
this.id = id;
this.cost = cost;
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
public Long readLong() throws IOException {
return Long.parseLong(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 1238번][Java] 파티 - 다익스트라(간선 뒤집기) (0) | 2020.09.24 |
---|---|
[백준 1261번][Java] 알고스팟 - 다익스트라 (0) | 2020.09.23 |
[백준 1120번][Java] 문자열 (0) | 2020.09.22 |
[백준 6603번][Java] 로또 - 백트래킹, 정렬 (0) | 2020.09.22 |
[백준 9663번][Java] N-Queen (0) | 2020.09.22 |
Comments