본문 바로가기
알고리즘/그래프

[java 백준]실버 1/2178번 미로찾기

by Meaning_ 2021. 10. 9.
728x90
반응형

 

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
69
70
71
72
73
74
75
76
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
 
class Dot {
    int x;
    int y;
 
    public Dot(int x, int y) {
        this.x = x;
        this.y = y;
    }
 
}
 
public class Main {
 
    public static int m;
    public static int n;
    public static int[][] arr;
    public static boolean[][] visited;
    public static int[] dirX = { -1100 };
    public static int[] dirY = { 00-11 };
 
    public static Queue<Dot> queue;
 
    public static void bfs(int i, int j) {
        queue.add(new Dot(i, j));
        while (!queue.isEmpty()) {
            Dot dot = queue.poll();
            int x = dot.x;
            int y = dot.y;
 
            for (int i1 = 0; i1 < 4; i1++) {
                int X = dot.x + dirX[i1];
                int Y = dot.y + dirY[i1];
                if (X >= 0 && X < n && Y >= 0 && Y < m) {
 
                    if (visited[X][Y] == false && arr[X][Y] == 1) {
 
                        queue.add(new Dot(X, Y));
                        visited[X][Y] = true;
                        arr[X][Y] = arr[x][y] + 1;
 
                        
 
                    }
                }
            }
 
        }
 
    }
 
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        m = sc.nextInt();
        arr = new int[n][m];
        visited = new boolean[n][m];
        queue = new LinkedList<Dot>();
        for (int i = 0; i < n; i++) {
            String s = sc.next();
            for (int j = 0; j < m; j++) {
                arr[i][j] = s.charAt(j) - '0';
                visited[i][j] = false;
 
            }
        }
 
        visited[0][0= true;
        bfs(00);
        System.out.println(arr[n - 1][m - 1]);
 
    }
}
cs

 

7576번 토마토와 비슷한 문제인데 방문했는지 bool형의 visited 2차원 배열을 만들어주는것이 핵심이다!

https://we1cometomeanings.tistory.com/167

 

[java 백준] 실버 1/7576번 토마토

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 69..

we1cometomeanings.tistory.com

 

풀면서 아쉬웠던 점

 

나는 이동경로의 횟수를 ans라는 변수에 담아주고, BFS로 탐색할때 마다 ans를 1씩 더해준 후(큐에 현재 인덱스가 담길 때)   인덱스가 n,m이 될때 ans를 return 해주는 방식을 취했는데 이러니까 답이 틀리게 나왔다.

더 좋은 방식은 arr[x][y]=arr[node.x][node.y]+1을 해주는 것이였다. 이동한 위치=이전 위치 +1을 해주면 더 정확히 구할 수 있었고, 어차피 첫번째 인덱스인 arr[1][1]의 값이 1이기 때문에 새로운 배열을 만들필요도 없었다. 

 

 

<읽어보면 좋은글>

https://sarah950716.tistory.com/m/12

 

[그래프] 인접 행렬과 인접 리스트

그래프 관련 문제를 풀 때는, 문제 상황을 그래프로 모델링한 후에 푸는 것이 보편적입니다. 이 때, 모델링한 그래프의 연결관계를 나타내는 두 가지 방식이 있습니다. 1. 인접 행렬 2. 인접 리스

sarah950716.tistory.com

 

728x90
반응형

댓글