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
- UELOG
- 알고리즘
- map
- 언리얼가비지컬렉터
- 스마트포인터
- 프로그래머스
- 애셋로드
- enumasByue
- stl
- 람다사용정렬
- unorder_map
- 강참조
- 언리얼엔진구조체
- 자료구조
- 선택정렬
- 람다
- C++
- UML관련
- dataasset
- UE_LOG
- 크리티컬섹션
- 정렬알고리즘
- 데이터애셋
- 약참조
- BFS
- UE4 커스텀로그
- 델리게이트
- moreeffectiveC++
- 정렬
- C++최적화
Archives
- Today
- Total
기억을 위한 기록들
[백준 2468: 안전 영역] - C++ 본문
#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <queue>
#include <string.h>
using namespace std;
int map[100][100];
int visited[100][100];
int cnt = 0;
int dir[4][2] =
{
{0,-1},
{1,0},
{0,1},
{-1,0}
};
int main() {
int n;
cin >> n;
int high = 1;
int input;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cin >> input;
map[i][j] = input;
if (high < input)
high = input;
}
}
int result = 0;
for (int find = 0; find < high; find++)
{
queue<pair<int, int>> Q;
cnt = 0;
memset(visited, 0, sizeof(visited));
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (map[i][j] <= find || visited[i][j] == 1)
continue;
Q.push({ i,j });
visited[i][j] = true;
while (!Q.empty())
{
int CurX = Q.front().first;
int CurY = Q.front().second;
Q.pop();
for (int index = 0; index < 4; index++)
{
int nextX = CurX + dir[index][0];
int nextY = CurY + dir[index][1];
if (nextX < 0 || nextY < 0 || n <= nextX || n <= nextY)
continue;
if (map[nextX][nextY] > find && visited[nextX][nextY] == 0)
{
visited[nextX][nextY] = 1;
Q.push({ nextX,nextY });
}
}
}
cnt++;
}
}
if (result <= cnt)
result = cnt;
}
cout << result << endl;
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 1389: 케빈 베이컨의 6단계 법칙] - C++ (0) | 2021.02.09 |
---|---|
[백준 2583: 영역 구하기] - C++ (0) | 2021.02.04 |
[백준 4936: 섬의 개수] - C++ (0) | 2021.01.18 |
[백준 7562: 나이트의 이동] - C++ (0) | 2021.01.15 |
[백준 11724: 연결 요소의 개수] - C++ (0) | 2021.01.15 |