-
Notifications
You must be signed in to change notification settings - Fork 0
/
Flood_Fill_Algorithm.cpp
105 lines (89 loc) · 2.16 KB
/
Flood_Fill_Algorithm.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
100
101
102
103
104
105
/*
@algorithm : flood fill algorithm
@author : Amirul Islam
@complexity : O(N*M)
*/
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
const int mx = 1e3;
char grid[mx][mx];
bool vis[mx][mx];
int row, column;
int dx[] = {+0, +0, +1, -1, -1, +1, -1, +1};
int dy[] = {-1, +1, +0, +0, +1, +1, -1, -1};
void floodfill(int i, int j, int cnt) {
if (i < 0 || j < 0 || i >= row || j >= column) return; // base case
if (grid[i][j] == '.' && !vis[i][j]) {
vis[i][j] = true;
grid[i][j] = (cnt + '0');
for (int m = 0; m < 8; m++) {
int x = i + dx[m];
int y = j + dy[m];
floodfill(x, y, cnt);
}
}
}
int main() {
// freopen("in", "r", stdin);
scanf("%d %d", &row, &column);
getchar();
// input 2D grid array
for (int i = 0; i < row; i++) {
for (int j = 0; j < column; j++) {
scanf("%c", &grid[i][j]);
}
getchar();
}
// traverse 2D array
// find dotted region
int cnt(0);
for (int i = 0; i < row; i++) {
for (int j = 0; j < column; j++) {
if (grid[i][j] == '.' && !vis[i][j]) {
cnt++;
floodfill(i, j, cnt);
}
}
}
printf("Number of dotted region: %d\n\n", cnt);
// print new grid
for (int i = 0; i < row; i++) {
for (int j = 0; j < column; j++) {
printf("%c", grid[i][j]);
}
puts("");
}
}
/*
Input:
-----
12 25
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@*************@@@@@@
@@@@@@*....* ..@@@@@@
@@@@@@*....* ....@@@@@@
@.@@@@*....* .@@@@@@
@@@@@@*....********@@..@@
@@@@@@*...........*@@@...
@@@@@@*...........*@@@..@
@@@@@@*************@@@@.@
@@@@@@@@@.....@@@@@@@@@@@
@@@@@@@@@.....@@@@@@@@@@@
Output:
------
Number of dotted region: 5
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@*************@@@@@@
@@@@@@*1111* 22@@@@@@
@@@@@@*1111* 2222@@@@@@
@3@@@@*1111* 2@@@@@@
@@@@@@*1111********@@44@@
@@@@@@*11111111111*@@@444
@@@@@@*11111111111*@@@44@
@@@@@@*************@@@@4@
@@@@@@@@@55555@@@@@@@@@@@
@@@@@@@@@55555@@@@@@@@@@@
*/