Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- C++
- C++최적화
- 크리티컬섹션
- moreeffectiveC++
- 애셋로드
- 언리얼엔진구조체
- BFS
- UML관련
- 프로그래머스
- 람다사용정렬
- UELOG
- 선택정렬
- 정렬
- 자료구조
- 약참조
- stl
- unorder_map
- 언리얼가비지컬렉터
- 람다
- 데이터애셋
- 스마트포인터
- 정렬알고리즘
- 강참조
- map
- 알고리즘
- 델리게이트
- enumasByue
- dataasset
- UE4 커스텀로그
- UE_LOG
Archives
- Today
- Total
기억을 위한 기록들
[백준 2178 : 미로 탐색] - C++ 본문
#include<iostream>
#include<string>
#include<vector>
#include<queue>
#include<string.h>
using namespace std;
int n,m;
vector<int> map[100];
int dis[100][100];
bool check[100][100];
int dx[4] = { -1,0,1,0 };
int dy[4] = { 0,1,0,-1 };
int main() {
memset(dis, 0, sizeof(dis));
memset(check, false, sizeof(check));
cin >> n>>m;
string num;
for (int i = 0; i < n; i++)
{
cin >> num;
for (int j = 0; j < m; j++)
{
int a = num[j] - '0';
map[i].push_back(a);
}
}
queue<pair<int, int>> Q;
Q.push({ 0, 0 });
map[0][0] = 0;
dis[0][0] = 1;
while (!Q.empty())
{
int xx = Q.front().first;
int yy = Q.front().second;
Q.pop();
for (int i = 0; i < 4; i++)
{
int nextX = xx + dx[i];
int nextY = yy + dy[i];
if(nextY<0 || m<=nextY || nextX<0 ||n<=nextX)
{
continue;
}
if (map[nextX][nextY] == 1 && !check[nextX][nextY])
{
check[nextX][nextY] = true;
Q.push({ nextX,nextY });
dis[nextX][nextY] = dis[xx][yy] + 1;
}
}
}
cout << dis[n - 1][m - 1] << endl;
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 1697: 숨바꼭질] - C++ (0) | 2021.01.14 |
---|---|
[백준 7576: 토마토] - C++ (0) | 2021.01.13 |
[백준 1012 : 유기농 배추] - C++ (0) | 2021.01.12 |
[백준 2667 : 단지번호 붙이기] - C++ (0) | 2021.01.12 |
송아지찾기(BFS) (0) | 2021.01.08 |