Notice
Recent Posts
Recent Comments
Link
뮁이의 개발새발
[JAVA] SWEA 1249 보급로 본문
젤다랑 거의 똑같은 문제!
입력을 띄어쓰기 없이 줘서 그거 바꿔주면 그냥 젤다랑 똑같다..
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
public class swea1249 {
static class node implements Comparable<node> {
int x;
int y;
int d;
public node(int x, int y, int d) {
super();
this.x = x;
this.y = y;
this.d = d;
}
@Override
public int compareTo(node o) {
return this.d < o.d ? -1 : 1;
}
}
static int N;
static int[][] map;
static int[][] cost;
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int T = Integer.parseInt(in.readLine());
for (int tc = 1; tc <= T; tc++) {
N = Integer.parseInt(in.readLine());
map = new int[N][N];
cost = new int[N][N];
for (int i = 0; i < N; i++) {
String s = in.readLine();
for (int j = 0; j < N; j++) {
map[i][j] = s.charAt(j) - '0';
cost[i][j] = Integer.MAX_VALUE;
}
}
int ans = solve();
sb.append("#" + tc + " " + ans + "\n");
}
System.out.println(sb);
}
static int solve() {
int[] dx = { 0, 0, -1, 1 };
int[] dy = { -1, 1, 0, 0 };
PriorityQueue<node> queue = new PriorityQueue<>();
queue.add(new node(0, 0, map[0][0]));
cost[0][0] = map[0][0];
while (!queue.isEmpty()) {
node tmpnode = queue.poll();
int x = tmpnode.x;
int y = tmpnode.y;
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (nx == -1 || ny == -1 || nx == N || ny == N) {
continue;
}
if (cost[ny][nx] > cost[y][x] + map[ny][nx]) {
cost[ny][nx] = cost[y][x] + map[ny][nx];
queue.offer(new node(nx, ny, cost[ny][nx]));
}
}
}
return cost[N - 1][N - 1];
}
}
'Algorithm' 카테고리의 다른 글
[JAVA] 백준 5567 결혼식 (0) | 2021.10.19 |
---|---|
[JAVA] 프로그래머스 로또의 최고 순위와 최저 순위 (0) | 2021.10.04 |
[JAVA] 백준 4485 녹색 옷 입은 애가 젤다지? (다익스트라) (0) | 2021.09.29 |
[JAVA] 백준 1755번 숫자놀이 (0) | 2021.09.27 |
[JAVA] 백준 17070 파이프 옮기기1 (DFS) (0) | 2021.09.25 |
Comments