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
| #include <iostream> #include <cstring> #include <queue>
#define PII pair<int, int>
#define x first #define y second
using namespace std;
const int N = 1010;
int n, m; int g[N][N], dist[N][N], st[N][N]; int dx[] = {0, 0, 1, -1}; int dy[] = {1, -1, 0, 0};
int main() { queue<PII> q; memset(dist, 0x3f, sizeof dist); cin >> n >> m; cin.get(); for (int i = 0; i < n; ++i) { for (int j = 0; j < m; ++j) { char t = cin.get(); g[i][j] = t - '0'; if (g[i][j]) { q.push({i, j}); dist[i][j] = 0; } } cin.get(); } while(!q.empty()) { auto t = q.front(); q.pop(); if (st[t.x][t.y]) continue; st[t.x][t.y] = true; for (int i = 0; i < 4; ++i) { int x = t.x + dx[i], y = t.y + dy[i]; if (x < 0 || y < 0 || x >= n || y >= m || st[x][y]) continue; dist[x][y] = min(dist[x][y], dist[t.x][t.y] + 1); q.push({x, y}); } } for (int i = 0; i < n; ++i) { for (int j = 0; j < m; ++j) { cout << dist[i][j] << ' '; } cout << '\n'; } }
|