-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCount_Apartments_II.cpp
More file actions
67 lines (66 loc) · 1.35 KB
/
Copy pathCount_Apartments_II.cpp
File metadata and controls
67 lines (66 loc) · 1.35 KB
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
#include <bits/stdc++.h>
#define null nullptr
using namespace std;
int n, m;
char ch[1000][1000];
bool vis[1000][1000];
int dx[4] = {0, 0, -1, 1};
int dy[4] = {1, -1, 0, 0};
bool valid(int x, int y)
{
if (x < 0 || x >= n || y < 0 || y >= m || ch[x][y] == '#')
return false;
return true;
}
void dfs(int si, int sj, int &count)
{
count++;
vis[si][sj] = true;
for (int i = 0; i < 4; i++)
{
int ci = si + dx[i];
int cj = sj + dy[i];
if (valid(ci, cj) && vis[ci][cj] == false)
{
dfs(ci, cj, count);
}
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> ch[i][j];
}
}
memset(vis, false, sizeof(vis));
vector<int> f;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if (ch[i][j] != '#' && vis[i][j] == false)
{
int count = 0;
dfs(i, j, count);
f.push_back(count);
}
}
}
if(f.empty())
{
cout<<0<<endl;
return 0;
}
sort(f.begin(), f.end());
for (int x : f)
{
cout << x << " ";
}
return 0;
}