981. The Quaternion Group II

Starting from an empty string, we want to build a string with letters "x", "y", "z". At each step, one of the following operations is performed:

A string is called neutral if it is possible to produce the string from the empty string after an even number of steps.

Let N(X,Y,Z) be the number of neutral strings which contain X copies of "x", Y copies of "y" and Z copies of "z".
For example, N(2,2,2)=42 and N(8,8,8)=4732773210.

Find the sum of N(i3,j3,k3) for 0i,j,k<88. Give your answer modulo 888888883.

981. 四元群 2

从一个空串开始,我们希望构造一个仅含字母 'x'、'y'、'z' 的字符串。构造的每一步中,你只能进行如下操作之一:

若能够从空串开始,经 偶数 次操作后得到某个字符串,则称这个字符串是 中性的

N(X,Y,Z) 为含 X 个 "x"、Y 个 "y"、Z 个 "z" 的中性的字符串的数量。
例如 N(2,2,2)=42N(8,8,8)=4732773210

N(i3,j3,k3) 的和模 888888883 的值,其中 0i,j,k<88


这个链接 回到源站。

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