-
Notifications
You must be signed in to change notification settings - Fork 0
/
Zero Row and Zero Column
58 lines (50 loc) · 1.18 KB
/
Zero Row and Zero Column
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
//Zero row and Zero Column
#include <iostream>
#include <vector>
using namespace std;
void matrow(vector<vector<int>> &mat, int n, int m, int i) {
for (int j = 0; j < m; j++) {
if (mat[i][j] != 0) {
mat[i][j] = -1;
}
}
}
void matcol(vector<vector<int>> &mat, int n, int m, int j) {
for (int i = 0; i < n; i++) {
if (mat[i][j] != 0) {
mat[i][j] = -1;
}
}
}
int main() {
int n, m;
cin >> n >> m;
vector<vector<int>> mat(n, vector<int>(m));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> mat[i][j];
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (mat[i][j] == 0) {
matrow(mat, n, m, i);
matcol(mat, n, m, j);
}
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (mat[i][j] == -1) {
mat[i][j] = 0;
}
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cout << mat[i][j] << " ";
}
cout << endl;
}
return 0;
}