菜鸟写给菜鸟的 ——LeetCode解题笔记 Easy-题目1:292. Nim Game

Easy-题目1:292. Nim Game
题目原文:
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个石子,拿到最后一个石子的人是赢家。你是第一个拿石子的人,石子的个数满足什么条件你可以保证必胜?
题目分析:
若石子的个数是4的倍数则保证先拿的人必输。设先拿的人每轮拿x个石子,则后拿的人拿4-x个石子,那么最后一个石子肯定是后拿的人得到。反之若石子的个数不是4的倍数,则先拿的人必胜。因为可以第一轮拿x个石子使得剩下的石子是4的倍数,再由你的对手开始拿,按上述策略你必胜。因此算法即求n是否为4的倍数。
源码:(language: c)

bool canWinNim(int n) {
    return n%4;
}

成绩:
0ms,beats 0.18% 众数:0ms,99.82%
Cmershen的碎碎念:
这道题不知道为什么会出现在Leetcode上,也不知道为什么还有0.18%的提交代码不是0ms。难道你们真的进行了模拟?

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值