首页 > 其他 > 详细

LeetCode - Set Matrix Zeroes

时间:2014-02-14 22:40:57      阅读:394      评论:0      收藏:0      [点我收藏+]

Set Matrix Zeroes

2014.2.13 22:15

Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.

click to show follow up.

Follow up:

Did you use extra space?
A straight forward solution using O(mn) space is probably a bad idea.
A simple improvement uses O(m + n) space, but still not the best solution.
Could you devise a constant space solution?

Solution1:

  The O(m * n) solution is unacceptable and unnecessary, so we‘ll write the O(m + n) version first.

  The extra O(n) and O(m) spaces are used to mark if this row or column contains 0.

  Code is relatively simple, please see for yourself.

  Time complexity is O(n * m), space complexity is O(n + m).

Accepted code:

bubuko.com,布布扣
 1 // 1AC, O(m + n) solution.
 2 class Solution {
 3 public:
 4     void setZeroes(vector<vector<int> > &matrix) {
 5         int n, m;
 6         
 7         n = matrix.size();
 8         if (n == 0) {
 9             return;
10         }
11         m = matrix[0].size();
12         if (m == 0) {
13             return;
14         }
15 
16         int i, j;
17         vector<int> row_zero, col_zero;
18         
19         for (i = 0; i < n; ++i) {
20             row_zero.push_back(0);
21         }
22         for (j = 0; j < m; ++j) {
23             col_zero.push_back(0);
24         }
25         
26         for (i = 0; i < n; ++i) {
27             for (j = 0; j < m; ++j) {
28                 if (matrix[i][j] == 0) {
29                     row_zero[i] = 1;
30                     col_zero[j] = 1;
31                 }
32             }
33         }
34         
35         for (i = 0; i < n; ++i) {
36             if (row_zero[i]) {
37                 for (j = 0; j < m; ++j) {
38                     matrix[i][j] = 0;
39                 }
40             }
41         }
42         
43         for (j = 0; j < m; ++j) {
44             if (col_zero[j]) {
45                 for (i = 0; i < n; ++i) {
46                     matrix[i][j] = 0;
47                 }
48             }
49         }
50         
51         row_zero.clear();
52         col_zero.clear();
53     }
54 };
bubuko.com,布布扣

Solution2:

  Since the problem requires an algorithm using O(1) space, we‘ll have to improve the previous version.

  The matrix itself takes O(n * m) space, so we might take one row and one column from it as the marker array.

  With one row and column picked out as marker array, we‘ll need two extra markers for this row and column. Let them be the first row and first column.

  The code will be longer, with the 1st and 2st~nth rows processed separately, likewise for columns.

  Time complexity is O(n * m), space complexity is O(1).

Accepted code:

bubuko.com,布布扣
 1 // 1WA, 1AC, use the first row and column as markers.
 2 class Solution {
 3 public:
 4     void setZeroes(vector<vector<int> > &matrix) {
 5         int n, m;
 6         
 7         n = matrix.size();
 8         if (n == 0) {
 9             return;
10         }
11         m = matrix[0].size();
12         if (m == 0) {
13             return;
14         }
15 
16         bool c0_is_zero, r0_is_zero;
17         int i, j;
18         
19         c0_is_zero = false;
20         for (i = 0; i < n; ++i) {
21             if (matrix[i][0] == 0) {
22                 c0_is_zero = true;
23                 break;
24             }
25         }
26         
27         r0_is_zero = false;
28         for (i = 0; i < m; ++i) {
29             if (matrix[0][i] == 0) {
30                 r0_is_zero = true;
31                 break;
32             }
33         }
34         
35         for (i = 1; i < n; ++i) {
36             for (j = 1; j < m; ++j) {
37                 if (matrix[i][j] == 0) {
38                     // use 0th row and column as markers
39                     matrix[i][0] = 0;
40                     matrix[0][j] = 0;
41                 }
42             }
43         }
44         
45         for (i = 1; i < n; ++i) {
46             if (matrix[i][0] == 0) {
47                 for (j = 1; j < m; ++j) {
48                     matrix[i][j] = 0;
49                 }
50             }
51         }
52         
53         for (j = 1; j < m; ++j) {
54             if (matrix[0][j] == 0) {
55                 for (i = 1; i < n; ++i) {
56                     matrix[i][j] = 0;
57                 }
58             }
59         }
60         
61         if (r0_is_zero) {
62             for (j = 0; j < m; ++j) {
63                 matrix[0][j] = 0;
64             }
65         }
66         if (c0_is_zero) {
67             for (i = 0; i < n; ++i) {
68                 matrix[i][0] = 0;
69             }
70         }
71     }
72 };
bubuko.com,布布扣

LeetCode - Set Matrix Zeroes

原文:http://www.cnblogs.com/zhuli19901106/p/3548773.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!