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