博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode——Nim Game
阅读量:6185 次
发布时间:2019-06-21

本文共 835 字,大约阅读时间需要 2 分钟。

Description:

You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 stones. The one who removes the last stone will be the winner. You will take the first turn to remove the stones.

Both of you are very clever and have optimal strategies for the game. Write a function to determine whether you can win the game given the number of stones in the heap.

For example, if there are 4 stones in the heap, then you will never win the game: no matter 1, 2, or 3 stones you remove, the last stone will always be removed by your friend.

有一堆石头,两个人轮流取,一次只能取1~3个,取得最后一个石头的人赢。给一个整数n判断是不是能赢。

这个问题其实是一个著名的博弈论的问题,但是这个地方有点简单,列出来前12个答案就能找出规律,就是只要是4的倍数都不可能赢。

Nim Game:   

 

代码:

public class Solution {    public boolean canWinNim(int n) {        return !(n%4==0);    }}

 

转载地址:http://ffsda.baihongyu.com/

你可能感兴趣的文章
iptables 参数意义
查看>>
smtp 的25端口连接超时
查看>>
2016.1.22 利用LINQ实现DataSet内多张DataTable关联查询操作(目前未发现太大价值)
查看>>
alerta 集中化告警信息 -zabbix
查看>>
返回顶部功能的实现
查看>>
NodeJS 笔记 URL模块
查看>>
205. Isomorphic Strings(字符串同构)
查看>>
C#笔记第三节课
查看>>
Light OJ 1049 Farthest Nodes in a Tree【树的直径】
查看>>
MYSQL中LIMIT用法_后台分页
查看>>
hdoj 5690 All X (快速幂+取模)
查看>>
AGC017C Snuke and Spells(巧妙的线段覆盖模型)
查看>>
标志寄存器
查看>>
MQ选型对比文档
查看>>
【设计模式】代理模式:静态代理,动态代理,spring aop
查看>>
Linux 的 Out-of-Memory (OOM) Killer
查看>>
《图像处理实例》 之 操作规则的圆
查看>>
《机器学习实战》Logistic回归
查看>>
Android短信验证码倒计时
查看>>
mysql中的timestamp类型时间比较:unix_timestamp函数
查看>>