반응형
BFS를 이용하여 각 단지별로 넓이를 구해 배열에 넣은후 오름차순 정렬하여 출력한다.
#include <iostream>
#include <queue>
#include <string>
#include <algorithm>
using namespace std;
int N, a[25][25] = {}, cnt = 0, b[400] = {};
int dx[4] = {1, 0, 0, -1};
int dy[4] = {0, 1, -1, 0};
void BFS() {
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (a[i][j] == 1) {
queue<pair<int, int>> q;
q.push({i, j});
a[i][j] = 0;
b[cnt]++;
while (!q.empty()) {
int x = q.front().first;
int y = q.front().second;
q.pop();
for (int k = 0; k < 4; k++) {
int nx = x + dx[k];
int ny = y + dy[k];
if (nx >= 0 && ny >= 0 && nx < N && ny < N) {
if (a[nx][ny] == 1) {
q.push({nx, ny});
a[nx][ny] = 0;
b[cnt]++;
}
}
}
}
cnt++;
}
}
}
sort(b, b+cnt);
cout << cnt << endl;
for (int i = 0; i < cnt; i++)
cout << b[i] << endl;
}
int main(void) {
cin >> N;
for (int i = 0; i < N; i++) {
string s;
cin >> s;
for (int j = 0; j < N; j++)
a[i][j] = s[j] - '0';
}
BFS();
}
'PS' 카테고리의 다른 글
[PS] 백준 7576번 - 토마토 (0) | 2023.05.16 |
---|---|
[PS] 백준 1012번 - 유기농 배추 (1) | 2023.05.16 |
[PS] 백준 2606번 - 바이러스 (0) | 2023.05.16 |
[PS] 백준 2178번 - 미로 탐색 (0) | 2023.05.16 |
[PS] 백준 1260번 - DFS와 BFS (0) | 2023.05.16 |