#include <bits/stdc++.h>
using namespace std;
using ll = long long;
constexpr int N = 1004, dx[]{0, 0, -1, 1}, dy[]{-1, 1, 0, 0};
int c[N][N], dead[N][N];
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, m;
cin >> n >> m;
queue<pair<int, int>> consider;
for (int i = 1; i <= n; ++i) {
for (int j = 1; j <= m; ++j) {
cin >> c[i][j];
if (c[i][j]) {
consider.emplace(i, j);
}
}
}
for (int j = 2; j <= m + 1; ++j) {
c[0][j] = 1;
consider.emplace(0, j);
}
for (int i = 2; i <= n + 1; ++i) {
c[i][0] = 1;
consider.emplace(i, 0);
}
for (int j = 0; j <= m - 1; ++j) {
c[n + 1][j] = 1;
consider.emplace(n + 1, j);
}
for (int i = 0; i <= n - 1; ++i) {
c[i][m + 1] = 1;
consider.emplace(i, m + 1);
}
auto normalize = [&]() {
while (!consider.empty()) {
auto [i, j] = consider.front();
consider.pop();
if (dead[i][j]) {
continue;
}
dead[i][j] = c[i][j];
if (i && j && dead[i - 1][j] && dead[i][j - 1]) {
dead[i][j] = 1;
}
if (dead[i][j + 1] && dead[i + 1][j]) {
dead[i][j] = 1;
}
if (dead[i][j]) {
for (int k = 0; k < size(dx); ++k) {
int ni = i + dx[k], nj = j + dy[k];
if (ni > 0 && nj > 0 && ni < n + 1 && nj < m + 1 && !dead[ni][nj]) {
consider.emplace(ni, nj);
}
}
}
}
};
normalize();
auto print = [&]() {
for (int i = 0; i <= n + 1; ++i) {
for (int j = 0; j <= m + 1; ++j) {
cout << dead[i][j];
}
cout << endl;
}
};
// print();
int q;
cin >> q;
while (q--) {
int i, j;
cin >> i >> j;
if (dead[i][j]) {
c[i][j] = 1;
cout << "1\n";
continue;
}
bool dont_need = false;
if (!dead[i][j + 1] && !dead[i - 1][j + 1]) {
dont_need = true;
}
if (!dead[i + 1][j] && !dead[i + 1][j - 1]) {
dont_need = true;
}
if (dont_need) {
c[i][j] = 1;
consider.emplace(i, j);
normalize();
cout << "1\n";
} else {
cout << "0\n";
}
}
return 0;
}
Compilation message
furniture.cpp: In lambda function:
furniture.cpp:64:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::size_t' {aka 'long unsigned int'} [-Wsign-compare]
64 | for (int k = 0; k < size(dx); ++k) {
| ~~^~~~~~~~~~
furniture.cpp: In function 'int main()':
furniture.cpp:76:10: warning: variable 'print' set but not used [-Wunused-but-set-variable]
76 | auto print = [&]() {
| ^~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
852 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
852 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |