https://judge.lavida.us/problem.php?id=1052


아주대 A.N.S.I에서 쓰는 저지 사이트입니다. 



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
#include <iostream>
#include <queue>
using namespace std;
 
 
int main(){
    ios_base::sync_with_stdio(false);
    int t;
    int dx[4= {0,0,1,-1};
    int dy[4= {1,-1,0,0};
    
    cin >> t;
    
    while(t--){
        char map[100][100];
        int n,m;
        pair<int,int> start;
        cin >> n >> m;
        
        for(int i = 0; i < n; i++){
            for(int j = 0; j < m; j++){
                cin >> map[i][j];
                if(map[i][j] == 'S')  start = {i,j};
            }
        }
        
        queue<pair<int,int> > q;
        bool visited[100][100= {0};
        bool check_goal = 0;
        int count = 0;
        q.push(start);
        
        while(!q.empty() && !check_goal){
            int size = q.size();
            count++;
            
            for(int i = 0; i < size; i++){
                int x = q.front().second, y = q.front().first;
                q.pop();
                
                for(int i= 0; i  < 4; i++){
                    int xx = x  + dx[i], yy = y+dy[i];
                    
                    if(xx < 0 || yy < 0 || xx >= m || yy >= n) continue;
                    if(visited[yy][xx] || map[yy][xx] == '#'continue;
                    if(map[yy][xx] == 'E'){
                        check_goal = true;
                        break;
                    }
                    q.push({yy,xx});
                    visited[yy][xx] = true;
                }
            }
        }
        if(check_goal) cout << count << endl;
        else          cout << -1 << endl;
    }    
}
cs


간단히 bfs를 이용해 최단경로 찾는 문제입니다.

반응형

'프로그래밍 > 문제풀이' 카테고리의 다른 글

[dfs] 백준 2606 바이러스  (0) 2019.03.22
[bfs] 백준 7569 토마토  (0) 2019.03.22
[dp] 백준 1495 기타리스트  (0) 2019.02.20
[dp] 백준 1309 동물원  (0) 2019.02.02
[dp] 백준 2579 계단오르기  (0) 2019.02.02

+ Recent posts