-
Notifications
You must be signed in to change notification settings - Fork 0
/
2667.cpp
99 lines (88 loc) · 1.7 KB
/
2667.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
입력
첫 번째 줄에는 지도의 크기 N(정사각형이므로 가로와 세로의 크기는 같으며 5≤N≤25)이 입력되고, 그 다음 N줄에는 각각 N개의 자료(0혹은 1)가 입력된다.
출력
첫 번째 줄에는 총 단지수를 출력하시오. 그리고 각 단지내 집의 수를 오름차순으로 정렬하여 한 줄에 하나씩 출력하시오.
*/
#include<iostream>
#include<queue>
using namespace std;
int n;
char map[25][26] = { 0, };
int vi[25][25] = { 0, };
int ix[4] = { 0,0,1,-1 };
int iy[4] = { 1,-1,0,0 };
int part[25 * 25] = { 0, };
queue<pair<int, int> > q;
bool rng(int x, int y)
{
if (x < 0 || y < 0 || x >= n || y >= n)
return false;
return true;
}
void qsrt(int l, int r)
{
int temp;
int i = l + 1, p = l, j = l;
if (l < r)
{
for (; i <= r; i++) {
if (part[i] < part[p]) {
j++;
temp = part[j];
part[j] = part[i];
part[i] = temp;
}
}
temp = part[j];
part[j] = part[p];
part[p] = temp;
qsrt(l, j - 1);
qsrt(j + 1, r);
}
}
int bfs()
{
int cnt = 0;
int x, y, nx, ny;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
{
if (map[i][j]-'0'== 1 && vi[i][j] == 0)
{
q.push(make_pair(i, j));
vi[i][j] = ++cnt;
part[cnt - 1]++;
while (!q.empty())
{
x = q.front().first;
y = q.front().second;
q.pop();
for (int a = 0; a < 4; a++)
{
nx = x + ix[a];
ny = y + iy[a];
if (rng(nx, ny) && map[nx][ny]-'0' == 1 && vi[nx][ny] == 0)
{
vi[nx][ny] = cnt;
part[cnt-1]++;
q.push(make_pair(nx, ny));
}
}
}
}
}
qsrt(0, cnt - 1);//오름차순 정렬
return cnt;
}
int main()
{
cin >> n;
for (int i = 0; i < n; i++)
cin >> map[i];
int cnt = bfs();
cout << cnt << endl;
for (int i = 0; i < cnt; i++)
cout << part[i] << endl;
return 0;
}