-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathBricks_Falling_When_Hit.cpp
123 lines (114 loc) · 4.15 KB
/
Bricks_Falling_When_Hit.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
class Solution {
int dx[4] = {-1, 0, 1, 0};
int dy[4] = {0, 1, 0, -1};
int totalBricksAttached(int x, int y, vector<vector<int>>& grid) {
if (grid[x][y] != 1) {
return 0;
}
grid[x][y] = 2;
int count = 0;
for (int i = 0; i < sizeof(dx) / sizeof(dx[0]); i++) {
int neighX = x + dx[i];
int neighY = y + dy[i];
if (neighX >= 0 and neighY >= 0 and neighX < grid.size() and neighY < grid[0].size()
and grid[neighX][neighY] == 1) {
count += totalBricksAttached(neighX, neighY, grid);
}
}
return 1 + count;
}
bool isConnectedToTop(int x, int y, vector<vector<int>>& grid) {
if (x == 0) {
return true;
}
for (int i = 0; i < sizeof(dx) / sizeof(dx[0]); i++) {
int neighX = x + dx[i];
int neighY = y + dy[i];
if (neighX >= 0 and neighY >= 0 and neighX < grid.size() and neighY < grid[0].size()
and grid[neighX][neighY] == 2) {
return true;
}
}
return false;
}
vector<int> searchFallingBricks(vector<vector<int>>& grid, vector<vector<int>>& hits) {
vector<int> result(hits.size(), 0);
for (int i = hits.size() - 1; i >= 0; i--) {
vector<int>& hit = hits[i];
int x = hit[0], y = hit[1];
if (grid[x][y] == 0) {
grid[x][y] = 1;
if (isConnectedToTop(x, y, grid)) {
result[i] = totalBricksAttached(x, y, grid) - 1;
}
}
}
return result;
}
void removeHits(vector<vector<int>>& grid, vector<vector<int>>& hits) {
for (vector<int> hit : hits) {
int x = hit[0], y = hit[1];
grid[x][y] = grid[x][y] - 1;
}
}
void markBricks(vector<vector<int>>& grid) {
for (int i = 0; i < grid[0].size(); i++) {
totalBricksAttached(0, i, grid);
}
}
public:
vector<int> hitBricks(vector<vector<int>>& grid, vector<vector<int>>& hits) {
removeHits(grid, hits);
markBricks(grid);
return searchFallingBricks(grid, hits);
}
};
// TLE
class Solution {
int dx[4] = {-1, 0, 1, 0};
int dy[4] = {0, 1, 0, -1};
int totalBricksAttached(vector<vector<int>>& grid, vector<vector<bool>>& isBrick, int x, int y) {
isBrick[x][y] = true;
int count = 0;
for (int i = 0; i < sizeof(dx) / sizeof(dx[0]); i++) {
int neighX = x + dx[i];
int neighY = y + dy[i];
if (neighX >= 0 and neighY >= 0 and neighX < grid.size() and neighY < grid[0].size()
and grid[neighX][neighY] and !isBrick[neighX][neighY]) {
isBrick[neighX][neighY] = true;
count += totalBricksAttached(grid, isBrick, neighX, neighY);
}
}
return 1 + count;
}
int totalBricksAttached(vector<vector<int>>& grid, vector<vector<bool>>& isBrick) {
int totalBricks = 0;
for (int i = 0; i < grid[0].size(); i++) {
if (grid[0][i] and !isBrick[0][i]) {
totalBricks += totalBricksAttached(grid, isBrick, 0, i);
}
}
return totalBricks;
}
public:
vector<int> hitBricks(vector<vector<int>>& grid, vector<vector<int>>& hits) {
vector<vector<bool>> isBrick;
isBrick = vector<vector<bool>>(grid.size(), vector<bool> (grid[0].size(), false));
int totalBricks = totalBricksAttached(grid, isBrick);
vector<int> result;
for (vector<int> hit : hits) {
int x = hit[0], y = hit[1];
if (!isBrick[x][y]) {
result.push_back(0);
continue;
}
grid[x][y] = 0;
totalBricks--;
isBrick = vector<vector<bool>>(grid.size(), vector<bool> (grid[0].size(), false));
int fallenBricks = totalBricks - totalBricksAttached(grid, isBrick);
result.push_back(fallenBricks);
totalBricks -= fallenBricks;
}
return result;
}
};