티스토리 뷰

PS/BOJ C++

2178번 - 미로 탐색

zpqmdh 2022. 1. 11. 02:32

https://www.acmicpc.net/problem/2178

 

2178번: 미로 탐색

첫째 줄에 두 정수 N, M(2 ≤ N, M ≤ 100)이 주어진다. 다음 N개의 줄에는 M개의 정수로 미로가 주어진다. 각각의 수들은 붙어서 입력으로 주어진다.

www.acmicpc.net

#include <iostream>
#include <string>
#include <queue>
using namespace std;
int N, M;
int maze[101][101];
bool visit[101][101];
int dx[4] = { 0,0,1,-1 };
int dy[4] = { 1,-1,0,0 };
int ans[101][101];
queue<pair<int, int>> q;
bool is_possible(int row, int col)
{
	if (row < 0 || row >= N || col < 0 || col >= M)
		return false;
	return true;
}
void solve(int row, int col)
{
	q.push(make_pair(row, col));
	visit[row][col] = true;
	ans[row][col]++;
	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 + dx[i];
			int ny = y + dy[i];
			//이동가능하고 길이 있고 들렸던 경로가 아닐 경우
			if (true == is_possible(nx, ny) && 1 == maze[nx][ny] && false == visit[nx][ny])
			{
				q.push(make_pair(nx, ny));
				visit[nx][ny] = true;
				ans[nx][ny] = ans[x][y] + 1;
			}
		}
	}
	

}
int main()
{
	cin >> N >> M;
	string str;
	for (int i = 0; i < N; i++)
	{
		cin >> str;
		for (int j = 0; j < M; j++)
			maze[i][j] = str[j] - '0';
	}
	
	solve(0, 0);
	
	cout << ans[N-1][M-1] << '\n';
	return 0;
}

'PS > BOJ C++' 카테고리의 다른 글

2667번 - 단지번호붙이기  (0) 2022.01.20
2920번 - 음계  (0) 2022.01.15
14502번 - 연구소  (0) 2022.01.09
1019번 - 책 페이지  (0) 2022.01.06
1015번 - 수열 정렬  (0) 2022.01.05
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함