-
Notifications
You must be signed in to change notification settings - Fork 0
/
73_SetMatrixZero.cpp
53 lines (47 loc) · 1.12 KB
/
73_SetMatrixZero.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
class Solution {
public:
void setZeroes(vector<vector<int>>& matrix) {
int rows = matrix.size();
int columns = matrix[0].size();
int i;
int j;
int k;
int flag = 0;
vector<pair<int,int>> pairs;
for(i=0;i<rows;i++)
{
flag=0;
for(j=0;j<columns;j++)
{
if(matrix[i][j] == 0)
{
pairs.push_back({i,j});
}
}
}
// for(k=0;k<pairs.size();k++)
// {
// for(int p=0;p<rows;p++)
// {
// matrix[p][pairs[k].second] = 0;
// }
// for(int p=0;p<columns;p++)
// {
// matrix[pairs[k].first][p] = 0;
// }
// }
for(auto pair:pairs)
{
int r = pair.first;
int c = pair.second;
for(int p=0;p<rows;p++)
{
matrix[p][c] = 0;
}
for(int p=0;p<columns;p++)
{
matrix[r][p] = 0;
}
}
}
};