[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 ...
随机推荐
- LINUX涉及网络相关知识
才接触到网络的老铁,是否比较晕呢? 简单记录一下网络相关知识吧(IPV4)! A0. 网络号.主机号 A1.网络地址分类: A2. 保留地址: A3. 子网掩码作用:(子网掩码.IPV4地址做“与”运 ...
- webpack 代码优化压缩方法
在配置基于webpack的react单页面脚手架时,公共依赖库代码打包至vender.js中,页面逻辑代码打包至app.js中,使用webpack-bundle-analyzer分析发现,两个js中包 ...
- 学习熟悉箭头函数, 类, 模板字面量, let和const声明
箭头函数:https://blog.csdn.net/qq_30100043/article/details/53396517 类:https://blog.csdn.net/pcaxb/articl ...
- day 13 - 1 迭代器
迭代器 首先我们查看下列类型拥有的所有方法(会显示很多) print(dir([])) print(dir({})) print(dir('')) print(dir(range(10))) #求下上 ...
- spring事务源码分析结合mybatis源码(三)
下面将结合mybatis源码来分析下,这种持久化框架是如何对connection使用,来达到spring事务的控制. 想要在把mybatis跟spring整合都需要这样一个jar包:mybatis-s ...
- TCP-IP详解笔记5
TCP-IP详解笔记5 ICMPv4和ICMPv6: Internet控制报文协议 Internet控制报文协议(Internet Control Message Protocol, ICMP)与IP ...
- 1、Flutter_初体验_创建第一个应用_AndroidStudio_windows
1.前言 至于 Flutter 是啥,我就不在这啰嗦了,下面以 windows 为例,展示一下从安装 Flutter 到运行 APP 整个过程: 2.安装 Flutter 2.1.中文介绍文档:htt ...
- 解决tomcat端口被占用:Port 8005 required by Tomcat v7.0 Server at localhost is already in use
问题提示8005端口被占用 首先:在cmd下,输入 netstat -ano|findstr 8005 (什么端口号被占用就输入什么端口号),回车 再输入 taskkill /pid 20 ...
- ASP.NET Core之依赖注入
本文翻译自:http://www.tutorialsteacher.com/core/dependency-injection-in-aspnet-core ASP.NET Core支持依赖注入,依赖 ...
- 【原创】大叔问题定位分享(21)spark执行insert overwrite非常慢,比hive还要慢
最近把一些sql执行从hive改到spark,发现执行更慢,sql主要是一些insert overwrite操作,从执行计划看到,用到InsertIntoHiveTable spark-sql> ...