-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path542. 01 Matrix.cpp
44 lines (42 loc) · 1.33 KB
/
542. 01 Matrix.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
/*
Problem Link: https://leetcode.com/problems/01-matrix/
Time: 93 ms (Beats 79.22%), Space: 34.5 MB (Beats 16.44%)
*/
class Solution {
public:
vector<vector<int>> updateMatrix(vector<vector<int>>& grid) {
int n= grid.size();
int m= grid[0].size();
vector<vector<int>> vis(n, vector<int>(m,0));
vector<vector<int>> dist(n, vector<int>(m,0));
queue<pair<pair<int,int>, int>> q;
for(int i=0; i<n; i++){
for(int j=0; j<m; j++){
if(grid[i][j]==0){
vis[i][j]=1;
q.push({{i,j},0});
} else {
vis[i][j]=0;
}
}
}
int delrow[] = {-1, 0, +1, 0};
int delcol[] = {0, 1, 0, -1};
while(!q.empty()){
int row= q.front().first.first;
int col= q.front().first.second;
int steps= q.front().second;
q.pop();
dist[row][col]=steps;
for(int i=0; i<4; i++){
int nrow= row+delrow[i];
int ncol= col+delcol[i];
if(nrow>=0 && nrow<n && ncol<m && ncol>=0 && !vis[nrow][ncol]){
vis[nrow][ncol]=1;
q.push({{nrow,ncol}, steps+1});
}
}
}
return dist;
}
};