0%

Problem 899


Problem 899


DistribuNim I

Two players play a game with two piles of stones. The players alternately take stones from one or both piles, subject to:

  1. the total number of stones taken is equal to the size of the smallest pile before the move;
  2. the move cannot take all the stones from a pile.

The player that is unable to move loses.

For example, if the piles are of sizes 3 and 5 then there are three possible moves.
(3,5)(2,1)(1,4)(3,5)(1,2)(2,3)(3,5)(0,3)(3,2)

Let L(n) be the number of ordered pairs (a,b) with 1a,bn such that the initial game position with piles of sizes a and b is losing for the first player assuming optimal play.

You are given L(7)=21 and L(72)=221.

Find L(717).


分布式取石子游戏(一)

两位玩家在玩一个游戏,游戏开始时有两堆石子,玩家轮流从一堆或两堆中取石子,并需遵守以下规则:

  1. 取走的石子总数等于行动前较小堆的石子数量;
  2. 不能将任何一堆的石子全部取完。

首先无法行动的玩家输掉游戏。

例如,如果两堆石子的大小分别为35,则有三种可能的行动:
(3,5)(2,1)(1,4)(3,5)(1,2)(2,3)(3,5)(0,3)(3,2)

L(n)为满足以下条件的有序对(a,b)的数量:1a,bn,且假设双方都采用最优策略,若游戏开始时两堆石子数目为ab,先手玩家必败。

已知L(7)=21L(72)=221

L(717)


Gitalking ...