博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
组合游戏-博弈论中经典模型题目
阅读量:6273 次
发布时间:2019-06-22

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

292. Nim Game

  • Total Accepted: 84580
  • Total Submissions: 157260
  • Difficulty: Easy

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 或者2或者 3 个,谁拿到最后的一个石头就赢了。

假设 A 和  B两个人拿石头,假定A先拿。

1 2 3     4   5 6 7  8  9 10 11  12 13 14 15 

石头数目如果是红色标记的个数,那么A肯定可以赢,即赢得条件是 n % 4 == 0 。

这么理解,石头数为4个时候 A 必输,可是当石头个数为 1 、2 、3时候A必赢。所以当石头数目大于4而又小于8的时候,A可以策略性的让B拿取石头后,石头的数目分布在[1,3]之间,因为A知道只要石头数目在[1,3]区间他肯定会赢。当石头数目为大于8的时候,A要策略性让B拿取石头后,石头的数目分布在[5,7]之间,因为A知道只要石头数目在[5,7]区间他肯定会赢,依次往后推....。

1 bool canWinNim(int n) {2     if(n%4 == 0)3         return false;4     else5         return true;6 }
View Code

 

 

转载于:https://www.cnblogs.com/nm90/p/5708781.html

你可能感兴趣的文章
springboot mybatis redis shiro 权限控制(springboot模块化使用,后台代码已经完成)...
查看>>
干货--手把手撸vue移动UI框架: 滑动删除
查看>>
CSS 系列之伪类与伪元素
查看>>
《算法导论》学习分享——摊还分析
查看>>
GO — 提供跨域请求代理服务
查看>>
【javascript 基础篇】prototype & constructor & instanceof
查看>>
AngularJs功能(八)--表单验证
查看>>
【源起Netty 外传】System.getPropert()详解
查看>>
LeetCode 300. Longest Increasing Subsequence
查看>>
Spring Boot快速入门(三):依赖注入
查看>>
ASUS Merlin固件开启JFFS教程
查看>>
JS面向对象之四 【new】 (创建特定对象的语法糖)
查看>>
使用 Nodejs 制作命令行工具
查看>>
Python调用C/C++方式
查看>>
JavaScript中的函数与arguments
查看>>
在vue-cli中组件通信
查看>>
翻译连载 | 附录 C:函数式编程函数库-《JavaScript轻量级函数式编程》 |《你不知道的JS》姊妹篇...
查看>>
【313天】跃迁之路——程序员高效学习方法论探索系列(实验阶段71-2017.12.15)...
查看>>
Linux和Ubuntu的区别与联系
查看>>
【译】Tree-shaking - webpack 2 和 Babel 6
查看>>