Skip to content

Latest commit

 

History

History
155 lines (121 loc) · 4.03 KB

File metadata and controls

155 lines (121 loc) · 4.03 KB

English Version

题目描述

在桌子上有 N 张卡片,每张卡片的正面和背面都写着一个正数(正面与背面上的数有可能不一样)。

我们可以先翻转任意张卡片,然后选择其中一张卡片。

如果选中的那张卡片背面的数字 X 与任意一张卡片的正面的数字都不同,那么这个数字是我们想要的数字。

哪个数是这些想要的数字中最小的数(找到这些数中的最小值)呢?如果没有一个数字符合要求的,输出 0。

其中, fronts[i] 和 backs[i] 分别代表第 i 张卡片的正面和背面的数字。

如果我们通过翻转卡片来交换正面与背面上的数,那么当初在正面的数就变成背面的数,背面的数就变成正面的数。

示例:

输入:fronts = [1,2,4,4,7], backs = [1,3,4,1,3]
输出:2
解释:假设我们翻转第二张卡片,那么在正面的数变成了 [1,3,4,4,7] , 背面的数变成了 [1,2,4,1,3]。
接着我们选择第二张卡片,因为现在该卡片的背面的数是 2,2 与任意卡片上正面的数都不同,所以 2 就是我们想要的数字。

 

提示:

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

解法

方法一:哈希表

对于位置 i,若 fronts[i]backs[i] 元素相同,则一定不满足条件。找其他出现在 fronts 或 backs 中的元素的最小值即可。

Python3

class Solution:
    def flipgame(self, fronts: List[int], backs: List[int]) -> int:
        same = {a for a, b in zip(fronts, backs) if a == b}
        ans = 9999
        for x in chain(fronts, backs):
            if x not in same:
                ans = min(ans, x)
        return ans % 9999

Java

class Solution {
    public int flipgame(int[] fronts, int[] backs) {
        Set<Integer> s = new HashSet<>();
        int n = fronts.length;
        for (int i = 0; i < n; ++i) {
            if (fronts[i] == backs[i]) {
                s.add(fronts[i]);
            }
        }
        int ans = 9999;
        for (int v : fronts) {
            if (!s.contains(v)) {
                ans = Math.min(ans, v);
            }
        }
        for (int v : backs) {
            if (!s.contains(v)) {
                ans = Math.min(ans, v);
            }
        }
        return ans % 9999;
    }
}

C++

class Solution {
public:
    int flipgame(vector<int>& fronts, vector<int>& backs) {
        unordered_set<int> s;
        int n = fronts.size();
        for (int i = 0; i < n; ++i)
            if (fronts[i] == backs[i])
                s.insert(fronts[i]);
        int ans = 9999;
        for (int& v : fronts)
            if (!s.count(v))
                ans = min(ans, v);
        for (int& v : backs)
            if (!s.count(v))
                ans = min(ans, v);
        return ans % 9999;
    }
};

Go

func flipgame(fronts []int, backs []int) int {
	s := map[int]bool{}
	for i, v := range fronts {
		if v == backs[i] {
			s[v] = true
		}
	}
	ans := 9999
	for _, v := range fronts {
		if !s[v] {
			ans = min(ans, v)
		}
	}
	for _, v := range backs {
		if !s[v] {
			ans = min(ans, v)
		}
	}
	return ans % 9999
}

func min(a, b int) int {
	if a < b {
		return a
	}
	return b
}

...