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