[leetcode] 861. Score After Flipping Matrix

441 篇文章 0 订阅
284 篇文章 0 订阅

Description

We have a two dimensional matrix A where each value is 0 or 1.

A move consists of choosing any row or column, and toggling each value in that row or column: changing all 0s to 1s, and all 1s to 0s.

After making any number of moves, every row of this matrix is interpreted as a binary number, and the score of the matrix is the sum of these numbers.

Return the highest possible score.

Example 1:

Input:

[[0,0,1,1],[1,0,1,0],[1,1,0,0]]

Output:

39

Explanation:

Toggled to [[1,1,1,1],[1,0,0,1],[1,1,1,1]].
0b1111 + 0b1001 + 0b1111 = 15 + 9 + 15 = 39

Note:

  1. 1 <= A.length <= 20
  2. 1 <= A[0].length <= 20
  3. A[i][j] is 0 or 1.

分析

题目的意思是:每个flip操作把该行或者列的所有0变成1,所有1变成0。然后每行看做一个二进制数,把所有行加起来作为返回结果。问怎么翻转结果才最大?

  • 让每行的第一位变成1,这个操作完毕以后就进一步优化,按列进行,如果这一列的0比1多,就flip一下。
  • 下面的是一个贪心的解法,很巧妙,我看了几次没看懂,这里我把上面的例子分布解析一下,帮助读者理解,
    第一次内循环:A[0][0] ^ A[0][0]+A[1][0] ^ A[1][0]+A[2][0] ^ A[2][0]=0
    3*(1<<3)=24
    第二次内循环:A[0][1] ^ A[0][0]+A[1][1] ^ A[1][0]+A[2][1] ^ A[2][0]=1
    2*(1<<2)=8
    第三次内循环:A[0][2] ^ A[0][0]+A[1][2] ^ A[1][0]+A[2][2] ^ A[2][0]=2
    2*(1<<1)=4
    第四次内循环:A[0][3] ^ A[0][0]+A[1][3] ^ A[1][0]+A[2][3] ^ A[2][0]=3
    3*(1<<0)=3

24+8+4+3=39,怎么样,是不是比第一种方法巧妙多了。

代码

class Solution {
public:
    int matrixScore(vector<vector<int>>& A) {
        int m=A.size();
        int n=A[0].size();
        int res=0;
        for(int i=0;i<n;i++){
            int col=0;
            for(int j=0;j<m;j++){
                col+=A[j][i]^A[j][0];
            }
            res+=max(col,m-col)*(1<<(n-i-1));
        }
        return res;
    }
};

参考文献

861. Score After Flipping Matrix
leetcode讲解–861. Score After Flipping Matrix

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值