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