-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0073.矩阵置零.cpp
108 lines (104 loc) · 2.25 KB
/
0073.矩阵置零.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* @lc app=leetcode.cn id=73 lang=cpp
*
* [73] 矩阵置零
*
* https://leetcode-cn.com/problems/set-matrix-zeroes/description/
*
* algorithms
* Medium (53.90%)
* Likes: 152
* Dislikes: 0
* Total Accepted: 23.7K
* Total Submissions: 43.4K
* Testcase Example: '[[1,1,1],[1,0,1],[1,1,1]]'
*
* 给定一个 m x n 的矩阵,如果一个元素为 0,则将其所在行和列的所有元素都设为 0。请使用原地算法。
*
* 示例 1:
*
* 输入:
* [
* [1,1,1],
* [1,0,1],
* [1,1,1]
* ]
* 输出:
* [
* [1,0,1],
* [0,0,0],
* [1,0,1]
* ]
*
*
* 示例 2:
*
* 输入:
* [
* [0,1,2,0],
* [3,4,5,2],
* [1,3,1,5]
* ]
* 输出:
* [
* [0,0,0,0],
* [0,4,5,0],
* [0,3,1,0]
* ]
*
* 进阶:
*
*
* 一个直接的解决方案是使用 O(mn) 的额外空间,但这并不是一个好的解决方案。
* 一个简单的改进方案是使用 O(m + n) 的额外空间,但这仍然不是最好的解决方案。
* 你能想出一个常数空间的解决方案吗?
*
*
*/
// @lc code=start
#include <vector>
using namespace std;
class Solution {
public:
void setZeroes(vector<vector<int>>& matrix)
{
int i, j;
bool col = false;
for (i = 0; i < matrix.size(); ++i) {
if (matrix[i][0] == 0) {
col = true;
}
for (j = 1; j < matrix[0].size(); ++j) {
if (matrix[i][j] == 0) {
matrix[i][0] = 0;
matrix[0][j] = 0;
}
}
}
for (i = 1; i < matrix.size(); ++i) {
if (matrix[i][0] == 0) {
for (j = 1; j < matrix[0].size(); ++j) {
matrix[i][j] = 0;
}
}
}
for (j = 1; j < matrix[0].size(); ++j) {
if (matrix[0][j] == 0) {
for (i = 1; i < matrix.size(); ++i) {
matrix[i][j] = 0;
}
}
}
if (matrix[0][0] == 0) {
for (j = 0; j < matrix[0].size(); ++j) {
matrix[0][j] = 0;
}
}
if (col) {
for (i = 0; i < matrix.size(); ++i) {
matrix[i][0] = 0;
}
}
}
};
// @lc code=end