티스토리 뷰
https://www.acmicpc.net/problem/1446
풀이
1) 그래프에 지름길 정보를 담고 distance 배열 초기화 ( distance[i] = i )
2) 0부터 다익스트라 시작
3) 1씩 증가시키면서 distance 배열에 최소 이동거리를 갱신
주의사항
1) 방문체크는 필요없다.
package com.baekJoon;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.StringTokenizer;
/**
* @author yhs
* @date 2021. 6. 30
* @see
* @mem
* @time
* @caution
* [고려사항]
* 역주행이 안됨
* [입력사항]
* [출력사항]
*/
public class BJ_S1_1446_지름길 {
static BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
static StringTokenizer tokens;
static int N, D, distance[], INF = Integer.MAX_VALUE;
static List<Node> graph[];
public static void main(String[] args) throws NumberFormatException, IOException {
//input = new BufferedReader(new StringReader(src));
distance = new int[10001];
graph = new List[10001];
for(int i=0; i<graph.length; i++) {
distance[i] = i;
graph[i] = new ArrayList<>();
}
tokens = new StringTokenizer(input.readLine());
N = Integer.parseInt(tokens.nextToken());
D = Integer.parseInt(tokens.nextToken());
for(int n=0; n<N; n++) {
tokens = new StringTokenizer(input.readLine());
int start = Integer.parseInt(tokens.nextToken());
int end = Integer.parseInt(tokens.nextToken());
int d = Integer.parseInt(tokens.nextToken());
graph[start].add(new Node(end, d));
}
dijkstra(0);
System.out.println(distance[D]);
}
private static void dijkstra(int start) {
if(start > D) {
return;
}
if(distance[start+1] > distance[start] + 1) {
distance[start+1] = distance[start] + 1;
}
for(int i=0; i<graph[start].size(); i++) {
if(distance[start] + graph[start].get(i).value < distance[graph[start].get(i).endPoint]) {
distance[graph[start].get(i).endPoint] = distance[start] + graph[start].get(i).value;
}
}
dijkstra(start+1);
}
static class Node {
int endPoint;
int value;
public Node(int endPoint, int value) {
super();
this.endPoint = endPoint;
this.value = value;
}
}
static String src =
"5 150\r\n" +
"0 50 10\r\n" +
"0 50 20\r\n" +
"50 100 10\r\n" +
"100 151 10\r\n" +
"110 140 90";
}
후기
실수해서 생각보다 오래걸렸다.
'Algorithm' 카테고리의 다른 글
[백준] G4 1261 알고스팟 (java) (0) | 2021.07.10 |
---|---|
[백준] G5 17396 백도어 (java) (0) | 2021.07.09 |
[백준] BJ S4 1978 소수찾기 (java) (0) | 2021.04.11 |
[프로그래머스] L1 완주하지 못한 선수 (java) (0) | 2021.01.19 |
[백준] G5 13549 숨바꼭질 3 (java) (0) | 2021.01.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 우선순위큐
- g4
- DFS
- Spring
- 구현
- 백준
- 리액트
- 시뮬레이션
- laugh4mile
- 리액트 네이티브
- BFS
- 그리디
- 객체지향
- java
- react native
- map
- 백트래킹
- S3
- 자바
- 코딩새내기
- 문자열
- Spring Boot
- react
- 다익스트라
- PriorityQueue
- 알고리즘
- SWEA
- G5
- S2
- 현꾸라지
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함