-
Notifications
You must be signed in to change notification settings - Fork 2
/
Solution.java
68 lines (56 loc) Β· 1.88 KB
/
Solution.java
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package BFS.swea1249;
import java.io.*;
import java.util.*;
public class Solution {
static int T, N;
static int[][] map, dp;
static int[] di = {-1, 0, 1, 0};
static int[] dj = {0, 1, 0, -1};
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/BFS/swea1249/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
T = Integer.parseInt(br.readLine());
for (int t = 1; t <= T; t++) {
N = Integer.parseInt(br.readLine());
map = new int[N][N];
dp = new int[N][N];
for (int i = 0; i < N; i++) {
String line = br.readLine();
for (int j = 0; j < N; j++) {
map[i][j] = line.charAt(j) - '0';
dp[i][j] = Integer.MAX_VALUE;
}
}
bfs();
sb.append("#").append(t).append(" ").append(dp[N-1][N-1]).append("\n");
}
System.out.println(sb.toString());
}
static void bfs() {
Queue<Pos> q = new LinkedList<>();
q.offer(new Pos(0, 0));
dp[0][0] = 0;
while (!q.isEmpty()) {
Pos p = q.poll();
for (int k = 0; k < 4; k++) {
int to_i = p.i + di[k];
int to_j = p.j + dj[k];
if (isValidPath(to_i, to_j) && dp[to_i][to_j] > dp[p.i][p.j] + map[to_i][to_j]) {
dp[to_i][to_j] = dp[p.i][p.j] + map[to_i][to_j];
q.offer(new Pos(to_i, to_j));
}
}
}
}
static boolean isValidPath(int i, int j) {
return 0 <= i && i < N && 0 <= j && j < N;
}
static class Pos {
int i, j;
public Pos(int i, int j) {
this.i = i;
this.j = j;
}
}
}