-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathLeetCode#59.cc
44 lines (36 loc) · 1.15 KB
/
LeetCode#59.cc
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
class Solution {
public:
void setZeroes(vector<vector<int> > &mat) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
int n = mat.size();
if(n==0) return ;
int m = mat[0].size();
if(m==0) return ;
bool row = false,col=false;
for(int j=0;j<m;j++)
if(mat[0][j]==0){row=true;break;}
for(int i=0;i<n;i++)
if(mat[i][0]==0){col=true;break;}
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
if(mat[i][j]==0){
mat[i][0]=mat[0][j]=0;
}
for(int i=1;i<n;i++)
if(mat[i][0]==0)
for(int j=0;j<m;j++)
mat[i][j]=0;
for(int j=1;j<m;j++)
if(mat[0][j]==0)
for(int i=0;i<n;i++)
mat[i][j]=0;
if(row)
for(int j=0;j<m;j++)
mat[0][j]=0;
if(col)
for(int i=0;i<n;i++)
mat[i][0]=0;
return ;
}
};