-
Notifications
You must be signed in to change notification settings - Fork 0
/
1072.按列翻转得到最大值等行数.cpp
86 lines (82 loc) · 1.94 KB
/
1072.按列翻转得到最大值等行数.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
/*
* @lc app=leetcode.cn id=1072 lang=cpp
*
* [1072] 按列翻转得到最大值等行数
*
* https://leetcode-cn.com/problems/flip-columns-for-maximum-number-of-equal-rows/description/
*
* algorithms
* Medium (49.28%)
* Likes: 29
* Dislikes: 0
* Total Accepted: 1.8K
* Total Submissions: 3.4K
* Testcase Example: '[[0,1],[1,1]]'
*
* 给定由若干 0 和 1 组成的矩阵 matrix,从中选出任意数量的列并翻转其上的 每个 单元格。翻转后,单元格的值从 0 变成 1,或者从 1 变为
* 0 。
*
* 返回经过一些翻转后,行上所有值都相等的最大行数。
*
*
*
*
*
*
* 示例 1:
*
* 输入:[[0,1],[1,1]]
* 输出:1
* 解释:不进行翻转,有 1 行所有值都相等。
*
*
* 示例 2:
*
* 输入:[[0,1],[1,0]]
* 输出:2
* 解释:翻转第一列的值之后,这两行都由相等的值组成。
*
*
* 示例 3:
*
* 输入:[[0,0,0],[0,0,1],[1,1,0]]
* 输出:2
* 解释:翻转前两列的值之后,后两行由相等的值组成。
*
*
*
* 提示:
*
*
* 1 <= matrix.length <= 300
* 1 <= matrix[i].length <= 300
* 所有 matrix[i].length 都相等
* matrix[i][j] 为 0 或 1
*
* 经过翻转之后,行上所有值相等的两行,要么全相等,要么全相反
*
* 可以使用判断第一个字符是否为1,如果为1,就这一行不变,如果为0,这一行全部取反。
* 这种归一化方式妙啊
*/
// @lc code=start
#include <vector>
#include <string>
using namespace std;
class Solution {
public:
int maxEqualRowsAfterFlips(vector<vector<int>>& matrix) {
unordered_map<string, int> m;
int res = 1;
for(auto& r: matrix){
string s;
int d = 0 ^ r[0];
for(auto x: r){
s += (d ^ x) + '0';
}
m[s] ++;
res = max(res, m[s]);
}
return res;
}
};
// @lc code=end