[Leetcode] 822. Card Flipping Game 解题报告

题目:

On a table are N cards, with a positive integer printed on the front and back of each card (possibly different).

We flip any number of cards, and after we choose one card. 

If the number X on the back of the chosen card is not on the front of any card, then this number X is good.

What is the smallest number that is good?  If no number is good, output 0.

Here, fronts[i] and backs[i] represent the number on the front and back of card i

A flip swaps the front and back numbers, so the value on the front is now on the back and vice versa.

Example:

Input: fronts = [1,2,4,4,7], backs = [1,3,4,1,3]
Output: 2
Explanation: If we flip the second card, the fronts are [1,3,4,4,7] and the backs are [1,2,4,1,3].
We choose the second card, which has number 2 on the back, and it isn't on the front of any card, so 2 is good.

 Note:

  1. 1 <= fronts.length == backs.length <= 1000.
  2. 1 <= fronts[i] <= 2000.
  3. 1 <= backs[i] <= 2000.

思路:

注意到一个现象就是:如果某一张牌的正面和背面的数字是一样的,那么无论翻转还是不翻转,该数字都会出现在正面的,所以该数字不可能为good number。对于其余的数字,我们实际上只需要找出最小值即可,这是由于:一旦该最小值出现在某个牌的正面,我们只需要将该牌翻转即可(由于该牌的正反面不一样,所以将该牌翻转之后,出现在正面的一定是另外一个数字)。

在实现中,我们用哈希表存储正面和背面都一样的数字,然后对于不在哈希表中出现的所有数字,找出其最小值。

代码:

class Solution {
public:
    int flipgame(vector<int>& fronts, vector<int>& backs) {
        unordered_set<int> same;
        for (int i = 0; i < fronts.size(); ++i) {
            if (fronts[i] == backs[i]) {
                same.insert(fronts[i]);
            }
        }
        int res = INT_MAX;
        for (int & i : fronts) {
            if (same.count(i) == 0) {
                res = min(res, i);
            }
        }
        for (int & i : backs) {
            if (same.count(i) == 0) {
                res = min(res, i);
            }
        }
        return res == INT_MAX ? 0 : res;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值