백준 2178

HR·2022년 4월 13일
0

알고리즘 문제풀이

목록 보기
13/50

백준 2178 : 미로 탐색

  1. 가중치가 같은 탐색이므로 bfs를 사용

정답 코드

#include <bits/stdc++.h>

using namespace std;

int n, m;
int miro[101][101], visited[101][101];
int now_x=0, now_y=0, x, y;
int dy[4] = {-1,0,1,0}, dx[4] = {0,1,0,-1};

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	
	//input
	scanf("%d %d", &n, &m);
	for(int i=0; i<n; i++) {
		for(int j=0; j<m; j++) {
			scanf("%1d", &miro[i][j]);
		}
	}
	
	//bfs
	queue<pair<int, int>> q;
	visited[0][0]=1;
	q.push({0, 0}); //시작위치는 (0, 0)
	while(q.size()) {
		tie(y, x) = q.front();
		q.pop();
		
		for(int i=0; i<4; i++) { //동서남북에 1이 있는지 확인 
			int now_y = y+dy[i];
			int now_x = x+dx[i];
			
			if(now_y<0 || now_x<0 || now_y>=n || now_x>=m) { //미로 밖으로 벗어난 경우 건너뜀 
				continue;
			}
			if(miro[now_y][now_x]==0) { //0인 경우 건너뜀 
				continue;
			}
			if(visited[now_y][now_x]) { //이미 방문한 경우 건너뜀 
				continue;
			} 
			
			visited[now_y][now_x] = visited[y][x]+1; //전보다 depth가 하나 증가 
			q.push({now_y, now_x}); //같은 depth를 가지는 애들이 큐에 들어가게 됨
		}
	}
	
	printf("%d", visited[n-1][m-1]);
	
	return 0;
}

cin, cout과 printf, scanf를 혼용해서 쓰면 안되는 이유

0개의 댓글