870. Stone Game IV

Two players play a game with a single pile of stones of initial size n. They take stones from the pile in turn, according to the following rules which depend on a fixed real number r>0:

Whoever cannot make a legal move loses the game.

Let L(r) be the set of initial pile sizes n for which the second player has a winning strategy. For example, L(0.5)={1}, L(1)={1,2,4,8,16,}, L(2)={1,2,3,5,8,}.

A real number q>0 is a transition value if L(s) is different from L(t) for all s<q<t.
Let T(i) be the i-th transition value. For example, T(1)=1, T(2)=2, T(22)6.3043478261.

Find T(123456) and give your answer rounded to 10 digits after the decimal point.

870. 取石子游戏 4

两位玩家正在玩取石子游戏,它们须轮流从初始时含 n 枚石子的石堆中取石子。取石子的规则如下,固定实数 r>0

无法行动者输。

L(r) 为:能使得后手有必胜策略的 n 构成的集合。例如,L(0.5)={1}L(1)={1,2,4,8,16,}L(2)={1,2,3,5,8,}

若实数 q>0 满足:对诸 s<q<tL(s)L(t),则称 q 是一个 过渡值。并记 T(i) 为第 i 个过渡值。例如,T(1)=1T(2)=2T(22)6.3043478261

T(123456),并将答案四舍五入至小数点后第 10 位。


这个链接 回到源站。

这个链接 回到详细版题目目录。