当前位置:网站首页>【日常训练--腾讯精选50】292. Nim 游戏
【日常训练--腾讯精选50】292. Nim 游戏
2022-07-07 00:03:00 【Puppet__】
题目
你和你的朋友,两个人一起玩 Nim 游戏:
桌子上有一堆石头。
你们轮流进行自己的回合, 你作为先手 。
每一回合,轮到的人拿掉 1 - 3 块石头。
拿掉最后一块石头的人就是获胜者。
假设你们每一步都是最优解。请编写一个函数,来判断你是否可以在给定石头数量为 n 的情况下赢得游戏。如果可以赢,返回 true;否则,返回 false 。
示例 1:
输入:n = 4
输出:false
解释:以下是可能的结果:
- 移除1颗石头。你的朋友移走了3块石头,包括最后一块。你的朋友赢了。
- 移除2个石子。你的朋友移走2块石头,包括最后一块。你的朋友赢了。
3.你移走3颗石子。你的朋友移走了最后一块石头。你的朋友赢了。
在所有结果中,你的朋友是赢家。
示例 2:
输入:n = 1
输出:true
示例 3:
输入:n = 2
输出:true
提示:
1 <= n <= 231 - 1
代码
class Solution {
// 简化nim博弈
public boolean canWinNim(int n) {
// 你只要永远剩下四个给对方就能保证自己的胜利
return n % 4 != 0;
}
}
边栏推荐
- async / await
- 判断文件是否为DICOM文件
- Use, configuration and points for attention of network layer protocol (taking QoS as an example) when using OPNET for network simulation
- App clear data source code tracking
- 论文阅读【Sensor-Augmented Egocentric-Video Captioning with Dynamic Modal Attention】
- [reading of the paper] a multi branch hybrid transformer network for channel terminal cell segmentation
- Mapbox Chinese map address
- 软件测试面试技巧
- DOM node object + time node comprehensive case
- How Alibaba cloud's DPCA architecture works | popular science diagram
猜你喜欢
分布式事务介绍
SAP webservice 测试出现404 Not found Service cannot be reached
sql优化常用技巧及理解
毕业之后才知道的——知网查重原理以及降重举例
English grammar_ Noun possessive
Make web content editable
[JS component] date display.
Design, configuration and points for attention of network unicast (one server, multiple clients) simulation using OPNET
爬虫练习题(三)
Dj-zbs2 leakage relay
随机推荐
什么是依赖注入(DI)
Jhok-zbl1 leakage relay
2pc of distributed transaction solution
sql优化常用技巧及理解
纪念下,我从CSDN搬家到博客园啦!
English语法_名词 - 所有格
Cve-2021-3156 vulnerability recurrence notes
爬虫练习题(三)
Codeforces Round #416 (Div. 2) D. Vladik and Favorite Game
微信小程序蓝牙连接硬件设备并进行通讯,小程序蓝牙因距离异常断开自动重连,js实现crc校验位
1.AVL树:左右旋-bite
Taobao store release API interface (New), Taobao oauth2.0 store commodity API interface, Taobao commodity release API interface, Taobao commodity launch API interface, a complete set of launch store i
nodejs获取客户端ip
淘宝店铺发布API接口(新),淘宝oAuth2.0店铺商品API接口,淘宝商品发布API接口,淘宝商品上架API接口,一整套发布上架店铺接口对接分享
Polynomial locus of order 5
Dj-zbs2 leakage relay
Mybaits之多表查询(联合查询、嵌套查询)
5. Data access - entityframework integration
Codeforces Round #416 (Div. 2) D. Vladik and Favorite Game
Design, configuration and points for attention of network unicast (one server, multiple clients) simulation using OPNET