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
- Java
- 이분 탐색
- 플로이드 와샬
- 서비스 디스커버리
- 달팽이
- Logback
- 구현
- spring cloud
- 메모이제이션
- 다익스트라
- 백트래킹
- 게이트웨이
- 도커
- 트리
- Gradle
- Spring Cloud Config
- docker-compose
- ZuulFilter
- 완전 탐색
- 비트마스킹
- 이분 매칭
- BFS
- 유레카
- 구간 트리
- Zuul
- 주울
- 스택
- spring boot
- 스프링 시큐리티
- dp
Archives
- Today
- Total
Hello, Freakin world!
[백준 1261번][Java] 알고스팟 - 다익스트라 본문
이 문제는 다익스트라 알고리즘을 적용하기 전에 그래프 모델링이 필요합니다.
하나의 칸을 하나의 노드라고 할 때 이전의 칸에 상관없이 목적지 칸의 값이 1(벽)이면 1의 가중치를 적용하고 0인 경우 0의 가중치를 적용합니다. 그리고 A -> B, B -> A 와 같이 양방향으로 간선을 정해줘야 합니다. 하지만 다행히 직접 구현할 필요는 없습니다.
가중치가 이전 칸의 종류에 상관없이 목적지 칸의 값에만 영항을 받기 때문에 board의 값에 따라 즉시 가중치 값을 반환하면 됩니다.
...
import java.io.*;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.StringTokenizer;
public class Main {
static int n,m;
static int[][] board, dist;
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader("testcase.txt");
InputReader reader = new InputReader();
StringTokenizer st = new StringTokenizer(reader.readLine());
m = Integer.parseInt(st.nextToken()); //가로 길이
n = Integer.parseInt(st.nextToken()); //세로 길이
board = new int[n][m]; dist = new int[n][m];
for (int i = 0; i < n; i++) {
String row = reader.readLine();
for (int j = 0; j < m; j++) {
board[i][j] = row.charAt(j)-48;
dist[i][j] = Integer.MAX_VALUE;
}
}
System.out.println(diijkstra());
}
static int[] dr = {1,-1,0,0};
static int[] dc = {0,0,1,-1};
private static int diijkstra() {
Comparator<Node> comparator = (n1,n2) -> {
if(n1.distance >= n2.distance) return 1;
else return -1;
};
PriorityQueue<Node> q = new PriorityQueue<>(comparator);
q.add(new Node(0,0,0));
dist[0][0] = 0;
while(!q.isEmpty()) {
Node here = q.poll();
if(here.distance > dist[here.row][here.col]) continue;
for (int i = 0; i < 4; i++) {
int nextR = here.row + dr[i];
int nextC = here.col + dc[i];
if(!isRange(nextR, nextC)) continue;
int weight = board[nextR][nextC] == 0 ? 0 : 1;
int nextDistance = here.distance + weight;
if(dist[nextR][nextC] > nextDistance) {
dist[nextR][nextC] = nextDistance;
q.add(new Node(nextR, nextC, nextDistance));
}
}
}
return dist[n-1][m-1];
}
private static boolean isRange(int r, int c) {
if(r < 0 || r >= n || c < 0 || c >= m) return false;
return true;
}
}
class Node{
int row, col, distance;
public Node(int row, int col, int distance) {
this.row = row;
this.col = col;
this.distance = distance;
}
}
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' 카테고리의 다른 글
[백준 13549번][Java] 숨바꼭질 3 - 다익스트라(그래프 범위 설정) (0) | 2020.09.24 |
---|---|
[백준 1238번][Java] 파티 - 다익스트라(간선 뒤집기) (0) | 2020.09.24 |
[백준 1916번][Java] 최소비용 구하기 - 다익스트라 (0) | 2020.09.23 |
[백준 1120번][Java] 문자열 (0) | 2020.09.22 |
[백준 6603번][Java] 로또 - 백트래킹, 정렬 (0) | 2020.09.22 |
Comments