티스토리 뷰
백준 녹색 옷 입은 애가 젤다지? (골드 IV )
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
// 녹색 옷 입은 애가 젤다지?(골드 4)
// 다익스트라
public class Main {
static int[][] zelda;
static boolean[][] visited;
static int N;
static int cnt = 0;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
List<Integer> res = new ArrayList<>();
// N = 0일 때까지 반복
while(true) {
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
if(N == 0) break;
zelda = new int[N][N];
visited = new boolean[N][N];
for(int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine(), " ");
for(int j = 0; j < N; j++) {
zelda[i][j] = Integer.parseInt(st.nextToken());
}
}
res.add(bfs());
}
for(int i = 1; i <= res.size(); i++) {
System.out.println("Problem " + i + ": " + res.get(i - 1));
}
}
private static int bfs() {
PriorityQueue<int[]> q = new PriorityQueue<>(Comparator.comparingInt(a -> a[a.length - 1]));
q.offer(new int[]{0, 0, zelda[0][0]});
visited[0][0] = true;
int[][] dir = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}};
// 거리 누적 합 저장 배열 dist
int[][] dist = new int[N][N];
for(int[] row : dist) {
Arrays.fill(row, Integer.MAX_VALUE);
}
dist[0][0] = 0;
while(!q.isEmpty()) {
int[] target = q.poll();
int cx = target[0];
int cy = target[1];
int rupee = target[2];
if(cx == N - 1 && cy == N - 1) {
return rupee + zelda[0][0];
}
for(int[] d : dir) {
int nx = cx + d[0];
int ny = cy + d[1];
if(canMove(nx, ny)) {
if(dist[nx][ny] > dist[cx][cy] + zelda[nx][ny]) {
dist[nx][ny] = dist[cx][cy] + zelda[nx][ny];
q.offer(new int[]{nx, ny, dist[nx][ny]});
}
}
}
}
return -1;
}
private static boolean canMove(int x, int y) {
if(x < 0 || x >= N || y < 0 || y >= N) return false;
return true;
}
}
다익스트라 문제
우선순위 큐 사용해서 rupee 값으로 오름차순
PriorityQueue<int[]> q = new PriorityQueue<>(Comparator.comparingInt(a -> a[a.length - 1]));
새로운 배열 dist(거리 누적 합 저장) + MAX값으로 초기화
int[][] dist = new int[N][N];
for(int[] row : dist) {
Arrays.fill(row, Integer.MAX_VALUE);
}
dist[0][0] = 0;
'알고리즘' 카테고리의 다른 글
[SWEA] 햄버거 다이어트 - 5215 (0) | 2024.11.16 |
---|---|
[14002] 가장 긴 증가하는 부분 수열 4 - Java (1) | 2024.11.15 |
0-1 BFS (1) | 2024.04.04 |
[15651] N과 M(3) - Java (0) | 2023.12.22 |
[15650] N과 M(2) - Java (0) | 2023.12.22 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- checkedException
- Thymeleaf
- 이진탐색
- 백준
- @Spring
- NPE
- 오블완
- id생성전략
- ddl-auto
- 생성자
- upperBound
- N+1문제
- uncheckedException
- Spring
- lowerBound
- 동등성
- 티스토리챌린지
- 자바
- 일급컬렉션
- StreamAPI
- Optional
- 유효성 검사
- Java
- null
- JPA
- springboot
- 메인메소드
- @NoArgsConstructor
- @ConfigurationProperties
- @Value
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함