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 | 31 |
Tags
- 프로그래머스
- 강참조
- dataasset
- BFS
- enumasByue
- unorder_map
- 언리얼가비지컬렉터
- 람다
- UELOG
- stl
- 크리티컬섹션
- 데이터애셋
- C++
- 정렬
- C++최적화
- 언리얼엔진구조체
- map
- 자료구조
- 람다사용정렬
- 델리게이트
- 정렬알고리즘
- UE_LOG
- 선택정렬
- moreeffectiveC++
- UML관련
- 알고리즘
- 스마트포인터
- 애셋로드
- UE4 커스텀로그
- 약참조
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 2 ] - 게임 맵 최단거리 본문
programmers.co.kr/learn/courses/30/lessons/1844
#include <vector>
#include <queue>
#include <string.h>
#define MAX 10001 //100x100 맵 최대크기의 최악의 경로는 10000이므로 10001 선언
using namespace std;
int dis[100][100] ;
int dir[4][2] = {
{1,0}//하
,{0,1} //우
,{-1,0} //상
,{0,-1}//좌
};
int solution(vector<vector<int>> maps)
{
int answer = 0;
memset(dis, MAX, sizeof(dis));
dis[0][0] = 1;
queue<pair<int, int>> q;
int sizeX = maps.size();
int sizeY = maps[0].size();
q.push({ 0,0 });
while (!q.empty())
{
int curX = q.front().first;
int curY = q.front().second;
q.pop();
for (int i = 0; i < 4; i++)
{
int nextX = curX + dir[i][0];
int nextY = curY + dir[i][1];
if (nextX < 0 || nextY < 0 || sizeX <= nextX || sizeY <= nextY)
continue;
if (maps[nextX][nextY] == 1 && (dis[nextX][nextY] > dis[curX][curY] + 1))
{
dis[nextX][nextY] = dis[curX][curY] + 1;
q.push({ nextX,nextY });
}
}
}
answer = dis[sizeX - 1][sizeY - 1];
if (answer == 286331153) //memset 함수 값이 unsigned char라서 286331153이라는 값으로 초기화 된 상태
{
return -1;
}
else
{
return answer;
}
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 카카오프렌즈 컬러링북 (0) | 2021.10.05 |
---|---|
[백준 16918: 봄버맨] - C++ (0) | 2021.03.22 |
[백준 3184: 양] - C++ (0) | 2021.03.04 |
[백준 18352: 특정 거리의 도시찾기] - C++ (0) | 2021.02.25 |
[프로그래머스 lv2] 네트워크 - c++ (0) | 2021.02.16 |