[LeetCode] Chalkboard XOR Game 黑板亦或游戏
We are given non-negative integers nums[i] which are written on a chalkboard. Alice and Bob take turns erasing exactly one number from the chalkboard, with Alice starting first. If erasing a number causes the bitwise XOR of all the elements of the chalkboard to become 0, then that player loses. (Also, we'll say the bitwise XOR of one element is that element itself, and the bitwise XOR of no elements is 0.)
Also, if any player starts their turn with the bitwise XOR of all the elements of the chalkboard equal to 0, then that player wins.
Return True if and only if Alice wins the game, assuming both players play optimally.
Example:
Input: nums = [1, 1, 2]
Output: false
Explanation:
Alice has two choices: erase 1 or erase 2.
If she erases 1, the nums array becomes [1, 2]. The bitwise XOR of all the elements of the chalkboard is 1 XOR 2 = 3. Now Bob can remove any element he wants, because Alice will be the one to erase the last element and she will lose.
If Alice erases 2 first, now nums becomes [1, 1]. The bitwise XOR of all the elements of the chalkboard is 1 XOR 1 = 0. Alice will lose.
Notes:
1 <= N <= 1000.0 <= nums[i] <= 2^16.
这道题介绍了一种亦或游戏,写在黑板上,(黑板一脸懵逼,跟我有个毛关系)。爱丽丝和鲍勃两个人轮流擦除一个数字,如果剩下的数字亦或值为0的话,那么当前选手就输了。反过来也可以这么说,如果某一个选手开始游戏时,当前数字的亦或值为0了,那么直接就赢了。现在给了我们一个数组,问先手的爱丽丝能否获胜。那么其实这道题是一道有技巧的题,并不是让我们按照游戏规则那样去遍历所有的情况,有海量的运算。这题有点像之前那道Nim Game,重要的是技巧!技巧!技巧!重要的事情说三遍~但我等凡夫俗子如何看的出技巧啊,看不出技巧只能看Discuss了,博主也没看出来。但实际上这道题的解法可以非常的简单,两三行就搞定了。辣么开始讲解吧:首先根据题目的描述,我们知道了某个选手在开始移除数字之前,如果数组的亦或值为0的话,选手直接获胜,那么先手爱丽丝在开始开始之前也应该检查一遍数组的亦或值,如果是0的话,直接获胜。我们再来分析亦或值不为0的情况,既然不为0,那么亦或值肯定是有一个值的,我们假设其是x。下面就是本题的精髓了,是要考虑数组个数的奇偶情况(尼玛谁能想到!),这个数组个数一旦是偶数的话,就大有文章了,现在数字个数是偶数,且亦或值不为0,说明数组中的数字不全相同,因为偶数个相同数字的亦或值为0,那么爱丽丝只要移除一个不为x的数字就行了,这样移除后数组的亦或值也不会是0,那么由于鲍勃也是个机智的boy,他也不会移除一个使得剩余数组亦或值为0的数字,but,到了最后一个数字时,鲍勃别无选择只能移除最后一个数字,此时数组为0,亦或值为0,爱丽丝获胜。那此时你可能会有疑问,为啥奇数个数字且亦或值不为0时,爱丽丝一定会输?因为即便爱丽丝先移除掉了一个数字,使得数组亦或值仍不为0,那么此时鲍勃面对的情况就是偶数个数字使得数组亦或值不为0,这跟上面推论爱丽丝一定会赢的情况一样,鲍勃也是个聪明的蓝孩纸,所以爱丽丝会输,参见代码如下:
解法一:
class Solution {
public:
bool xorGame(vector<int>& nums) {
int x = , n = nums.size();
for (int num : nums) x ^= num;
return x == || n % == ;
}
};
下面这种解法就很秀了,比大军师大司马吴秀波还秀,直接用个accumulate一行搞定亦或值,博主只想吐槽这道题的难度级别,大家有见过一行解出一道Hard题吗,做梦都要笑醒了吧~
解法二:
class Solution {
public:
bool xorGame(vector<int>& nums) {
return nums.size() % == || !accumulate(nums.begin(), nums.end(), , bit_xor<int>());
}
};
类似题目:
参考资料:
https://leetcode.com/problems/chalkboard-xor-game/solution/
https://leetcode.com/problems/chalkboard-xor-game/discuss/133807/1-line-C++-solution
LeetCode All in One 题目讲解汇总(持续更新中...)
[LeetCode] Chalkboard XOR Game 黑板亦或游戏的更多相关文章
- LintCode——Chalkboard XOR Game(黑板游戏)
黑板游戏: We are given non-negative integers nums[i] which are written on a chalkboard. Alice and Bob ta ...
- Java实现 LeetCode 810 黑板异或游戏 (分析)
810. 黑板异或游戏 一个黑板上写着一个非负整数数组 nums[i] .小红和小明轮流从黑板上擦掉一个数字,小红先手.如果擦除一个数字后,剩余的所有数字按位异或运算得出的结果等于 0 的话,当前玩家 ...
- 51nod-1661 1661 黑板上的游戏(组合游戏)
题目链接: 1661 黑板上的游戏 Alice和Bob在黑板上玩一个游戏,黑板上写了n个正整数a1, a2, ..., an,游戏的规则是这样的:1. Alice占有先手主动权.2. 每个人可以选取一 ...
- [Swift]LeetCode810. 黑板异或游戏 | Chalkboard XOR Game
We are given non-negative integers nums[i] which are written on a chalkboard. Alice and Bob take tu ...
- Weekly Contest 78-------->810. Chalkboard XOR Game
We are given non-negative integers nums[i] which are written on a chalkboard. Alice and Bob take tu ...
- [LeetCode] Maximum XOR of Two Numbers in an Array 数组中异或值最大的两个数字
Given a non-empty array of numbers, a0, a1, a2, … , an-1, where 0 ≤ ai < 231. Find the maximum re ...
- [LeetCode] Design Snake Game 设计贪吃蛇游戏
Design a Snake game that is played on a device with screen size = width x height. Play the game onli ...
- [LeetCode] Design Tic-Tac-Toe 设计井字棋游戏
Design a Tic-tac-toe game that is played between two players on a n x n grid. You may assume the fol ...
- Leetcode: Maximum XOR of Two Numbers in an Array
Given a non-empty array of numbers, a0, a1, a2, - , an-1, where 0 ≤ ai < 231. Find the maximum re ...
随机推荐
- MessageFormat的用法,java动态替换String字符串中的占位符
import java.text.MessageFormat; import java.util.GregorianCalendar; import java.util.Locale; public ...
- 类型和原生函数及类型转换(三:终结js类型转换)
Number() parseInt() parseFloat() Boolean() String() toString() 一.显式类型转换 -------Number()函数把对象的值转换为数字. ...
- LFYZ-OJ ID: 1008 求A/B高精度值
思路 小数点前的部分可以通过m/n直接计算得出 小数点后的20位可通过循环进行快速计算,计算方法如下: m%=n m*=10 小数点后第i位为m/n,回到第1步 第3步后,如果m%n为0,说明已经除净 ...
- [物理学与PDEs]第3章习题5 一维理想磁流体力学方程组的数学结构
试将一维理想磁流体力学方程组 (5. 10)-(5. 16) 化为一阶拟线性对称双曲组的形式. 解答: 由 (5. 12),(5. 16) 知 $$\beex \bea 0&=\cfrac{\ ...
- git中利用rebase来压缩多次提交 ----- 原文:https://blog.csdn.net/itfootball/article/details/44154121
之前我们用git merge –squash来将分支中多次提交合并到master后,只保留一次提交历史.但是有些提交到github远程仓库中的commit信息如何合并呢? 使用下面的命令,最后一个数字 ...
- shell脚本的小记
作者:邓聪聪 mysql的脚本执行 #!/bin/sh HOST="127.0.0.1" PORT=" UESRNAME="root" PASSWOR ...
- selenium——键盘操作
很多键盘操作实际是没有意义的.
- 读书笔记-JavaScript高级程序设计(1)
1.组合继承 (JavaScript 中最常用的继承模式 ) (position: page168) (书中定义了两个变量名 SuperType SubType 乍一看 感觉不太能区分,我将改为 ...
- 小程序 模态对话框自定义组件(modal)
1. 概述 1.1 说明 小程序中使用wx.showModal(Object object)打开一个模态对话框,但是目前小程序所提供的modal中的内容显示比较死板,不能够完全满足工作中所遇到的功能信 ...
- vue-标签页组件
content <template> <div class="tab-content"> <TabBar v-model="activeKe ...