백준 4485 녹색 옷 입은 애가 젤다

it/알고리즘 2018. 11. 24. 00:55 Posted by 하얀나다

그냥 BFS 로 다 더해서 최소값 집어 넣고 [N-1][N-1] 값 읽음


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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
import java.util.LinkedList;
 
import java.util.Queue;
 
import java.util.Scanner;
 
 
 
public class baek4485 {
 
 
 
    static int N, cnt;
 
    static int[][] map, map1;
 
    static boolean[][] visit;
 
    static int[] dx = { -1100 };
 
    static int[] dy = { 00-11 };
 
    static int min = Integer.MAX_VALUE;
 
    static boolean exitflag;
 
    static int tocnt;
 
 
 
    public static void main(String[] args) {
 
        Scanner sc = new Scanner(System.in);
 
        
 
        while(!exitflag) {
 
            
 
            N = sc.nextInt();
 
            if(N ==0) {
 
                exitflag = true;
 
                continue;
 
            }
 
            map = new int[N][N];
 
            map1 = new int[N][N];
 
            visit = new boolean[N][N];
 
 
 
            for (int i = 0; i < N; i++) {
 
                for (int j = 0; j < N; j++) {
 
                    map[i][j] = sc.nextInt();
 
                    map1[i][j] = min;
 
                }
 
            }
 
 
 
            BFS(00);
 
//            for (int i = 0; i < N; i++) {
 
//                for (int j = 0; j < N; j++) {
 
//                    System.out.print(map[i][j] + " ");
 
//                }
 
//                System.out.println();
 
//            }
 
//            System.out.println("!!!");
 
//            for (int i = 0; i < N; i++) {
 
//                for (int j = 0; j < N; j++) {
 
//                    System.out.print(map1[i][j] + " ");
 
//                }
 
//                System.out.println();
 
//            }
 
    //
 
//            for (int i = 0; i < N; i++) {
 
//                for (int j = 0; j < N; j++) {
 
//                    System.out.print(visit[i][j] + "\t");
 
//                }
 
//                System.out.println();
 
//            }
 
 
 
            System.out.println("Problem " + (++tocnt)+": " + map1[N-1][N-1]);
 
            
 
        }
 
        sc.close();
 
    }
 
 
 
    private static void BFS(int x, int y) {
 
        Queue<Point> q = new LinkedList<Point>();
 
        q.add(new Point(x, y));
 
        map1[x][y] = map[x][y];
 
        visit[x][y] = true;
 
        while (!q.isEmpty()) {
 
            Point p = q.remove();
 
 
 
            
 
            for (int i = 0; i < 4; i++) {
 
                int xx = p.x + dx[i];
 
                int yy = p.y + dy[i];
 
                if (xx >= 0 && yy >= 0 && xx < N && yy < N && map1[xx][yy] > map1[p.x][p.y] + map[xx][yy]) {
 
                    map1[xx][yy] = Math.min(map1[xx][yy], map1[p.x][p.y] + map[xx][yy]);
 
                    visit[xx][yy] = true;
 
                    q.add(new Point(xx, yy));
 
                }
 
            }
 
        }
 
 
 
    }
 
 
 
    private static class Point {
 
        int x;
 
        int y;
 
 
 
        Point(int x, int y) {
 
            this.x = x;
 
            this.y = y;
 
        }
 
    }
 
 
 
}
 
 
cs


'it > 알고리즘' 카테고리의 다른 글

백준 11057 - 오르막 수  (0) 2019.09.01
백준 1309 - 동물원  (0) 2019.09.01
스택을 이용한 문제  (0) 2015.01.06
힙을 이용한 트리  (0) 2015.01.06
패턴 찾기 알고리즘  (0) 2015.01.06