본문 바로가기
Algorithm/BFS DFS

[프로그래머스] 게임 맵 최단거리 c++

by 젊은오리 2023. 2. 23.
728x90

 

Code

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
#include<vector>
#include<iostream>
#include<queue>
#include<algorithm>
#include<cstring>
using namespace std;
 
int m,n; //행,열
int dir[4][2]={{-1,0},{1,0},{0,1},{0,-1}};
bool visited[101][101];
int dist[101][101];
queue<pair<int,int>> q;
 
int solution(vector<vector<int>> maps)
{
    int answer = 0;
    int m = maps.size(); //행 개수
    int n = maps[0].size(); //열 개수
 
    visited[0][0= true;
    q.push({0,0});
    dist[0][0= 1;
    
    while(!q.empty()){
        int x = q.front().first;
        int y = q.front().second;
        q.pop();
        
        for(int i=0;i<4;i++){
            int nx = x + dir[i][0];
            int ny = y + dir[i][1];
            if(nx<0 || nx>=|| ny<0 || ny>=n)
                continue;
            if(visited[nx][ny])
                continue;
            if(maps[nx][ny]==0)
               continue
 
            visited[nx][ny] = true;
            q.push({nx,ny});
            dist[nx][ny] = dist[x][y] + 1;
 
        }
    }
 
    if(dist[m-1][n-1]==0){
        answer = -1;
    }else{
        answer = dist[m-1][n-1];
    }
    
    return answer;
}
cs
728x90

'Algorithm > BFS DFS' 카테고리의 다른 글

[백준] 2667 단지번호붙이기 c++  (0) 2023.02.27
[프로그래머스] 가장 먼 노드 c++  (0) 2023.02.25
[백준] 1987 알파벳 c++  (0) 2023.02.24
[백준] 바이러스 c++  (0) 2023.02.23
백준 1260 DFS와 BFS  (0) 2022.02.03

댓글