-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path1072.Flip-Columns-For-Maximum-Number-of-Equal-Rows.py
48 lines (38 loc) · 1.29 KB
/
1072.Flip-Columns-For-Maximum-Number-of-Equal-Rows.py
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
# https://leetcode.com/problems/flip-columns-for-maximum-number-of-equal-rows/
# Medium (56.10%)
# Total Accepted: 3,989
# Total Submissions: 7,111
from collections import defaultdict
class Solution(object):
def maxEqualRowsAfterFlips(self, matrix):
"""
:type matrix: List[List[int]]
:rtype: int
"""
row = len(matrix)
if row == 0:
return 0
col = len(matrix[0])
hash_map = defaultdict(int)
res = 0
for i in xrange(row):
zero_col, one_col = [], []
for j in xrange(col):
if matrix[i][j] == 1:
one_col += j,
else:
zero_col += j,
zero_col_len, one_col_len = len(zero_col), len(one_col)
if zero_col_len == 0 or one_col_len == 0:
res += 1
else:
if zero_col_len == one_col_len:
hash_map[tuple(zero_col)] += 1
hash_map[tuple(one_col)] += 1
elif zero_col_len < one_col_len:
hash_map[tuple(zero_col)] += 1
else:
hash_map[tuple(one_col)] += 1
if len(hash_map) == 0:
return res
return max(res, max(hash_map.values()))