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
- 언리얼가비지컬렉터
- map
- 데이터애셋
- stl
- 알고리즘
- UE_LOG
- dataasset
- C++
- UE4 커스텀로그
- 람다사용정렬
- 프로그래머스
- 자료구조
- moreeffectiveC++
- 델리게이트
- 정렬알고리즘
- C++최적화
- 정렬
- 크리티컬섹션
- 약참조
- UML관련
- 애셋로드
- unorder_map
- enumasByue
- 스마트포인터
- UELOG
- BFS
- 강참조
- 람다
- 언리얼엔진구조체
- 선택정렬
Archives
- Today
- Total
기억을 위한 기록들
[백준 13565: 침투] - C++ 본문
#include<iostream>
using namespace std;
int map[1001][1001];
int chk[1001][1001];
int N, M;
int dir[4][2] = {
{-1,0}
,{0,1}
,{1,0}
,{0,-1}
};
bool bIsFind;
void D(int _x, int _y)
{
if (_x == N-1)
{
bIsFind = true;
return;
}
for (int i = 0; i < 4; i++)
{
int nextX = dir[i][0] + _x;
int nextY = dir[i][1] + _y;
if (nextX < 0 || nextY < 0 || N <= nextX || M <= nextY)
continue;
if (chk[nextX][nextY] == 0 && map[nextX][nextY] == 0)
{
chk[nextX][nextY] = 1;
D(nextX,nextY);
}
}
}
int main()
{
cin >> N >> M;
string input;
for (int i = 0; i < N; i++)
{
cin >> input;
for (int j = 0; j < M; j++)
{
map[i][j] = input[j] - '0';
}
}
for (int i = 0; i < M; i++) {
if (map[0][i] == 0) {
chk[0][i] = 1;
D(0, i);
}
}
if (bIsFind)
{
cout << "YES" << endl;
}
else {
cout << "NO" << endl;
}
return 0;
}
'Coding Test - cpp > DFS' 카테고리의 다른 글
[백준 3187: 양치기 꿍] - C++ (0) | 2021.02.05 |
---|---|
[백준 1743: 음식물 피하기] - C++ (0) | 2021.02.04 |
[백준 2644: 촌수계산] - C++ (0) | 2021.01.21 |
[백준 11725 : 트리의 부모 찾기] - C++ (0) | 2021.01.21 |
[백준 2606 : 바이러스] - C++ (0) | 2021.01.11 |