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
- C++
- BFS
- 람다사용정렬
- 강참조
- 델리게이트
- 알고리즘
- 크리티컬섹션
- UELOG
- 애셋로드
- UE_LOG
- UML관련
- 언리얼가비지컬렉터
- enumasByue
- 정렬
- dataasset
- 약참조
- 데이터애셋
- 선택정렬
- UE4 커스텀로그
- unorder_map
- 스마트포인터
- C++최적화
- map
- 프로그래머스
- moreeffectiveC++
- stl
- 자료구조
- 언리얼엔진구조체
- 정렬알고리즘
- 람다
Archives
- Today
- Total
기억을 위한 기록들
[백준 2583: 영역 구하기] - C++ 본문
#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<algorithm>
using namespace std;
int map[100][100];
int chk[100][100];
int dir[5][2] = {
{-1,0}
,{0,1}
,{0,0}
,{1,0}
,{0,-1}
};
int main()
{
int n, m;
int k;
cin >> n >> m >> k;
int x1;
int y1;
int x2;
int y2;
for (int i = 0; i < k; i++)
{
cin >> x1 >> y1;
cin >> x2 >> y2;
for (int j = 0; j < x2 - x1; j++)
{
for (int k = 0; k < y2 - y1; k++)
{
map[j + x1][k + y1] = 1;
}
}
}
queue<pair<int, int>> q;
vector<int> result;
for (int index1 = 0; index1 < m; index1++)
{
for (int index2 = 0; index2 < n; index2++)
{
if (map[index1][index2] != 0)
continue;
q.push({ index1,index2 });
int cnt = 0;
while (!q.empty())
{
int curX = q.front().first;
int curY = q.front().second;
q.pop();
for (int i = 0; i < 5; i++)
{
int nextX = curX + dir[i][0];
int nextY = curY + dir[i][1];
if (nextX < 0 || nextY < 0 || n <= nextY || m <= nextX)
{
continue;
}
if (map[nextX][nextY] == 0)
{
map[nextX][nextY] = 1;
q.push({ nextX,nextY });
cnt++;
}
}
}
result.push_back(cnt);
}
}
sort(result.begin(), result.end());
cout << result.size() << endl;
for (auto a : result)
cout << a << " ";
cout << '\n';
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 5567: 결혼식] - C++ (0) | 2021.02.10 |
---|---|
[백준 1389: 케빈 베이컨의 6단계 법칙] - C++ (0) | 2021.02.09 |
[백준 2468: 안전 영역] - C++ (0) | 2021.01.18 |
[백준 4936: 섬의 개수] - C++ (0) | 2021.01.18 |
[백준 7562: 나이트의 이동] - C++ (0) | 2021.01.15 |