A game is played on a standard checkerboard. Checkers are placed on one half of the checkerboard. Label the squares like an array, with squares for Checkers are then moved with the following rule:
Choose a checker at square . Pick another square ; then, the checker can move to the spot if it is vacant.
Let the number of possible checker arrangements be , where and is a non-negative integer. Find the last three digits of .
Details and Assumptions
The starting position counts as one arrangement. Move one checker, and it's another arrangement. Your job is to find the total number of arrangements with any number of moves.
Rotations and reflections count as different arrangements.
You may use a calculator to calculate the value of .
The starting position has checkers in squares for and .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Note that after the operation of ( m , n ) on ( i , j ) , the value of i ( m o d 3 ) stays the same. Ditto for j ( m o d 3 ) : 3 m − 2 i ≡ − 2 i ≡ i ( m o d 3 ) 3 n − 2 j ≡ − 2 j ≡ j ( m o d 3 )
Thus, a checker ( i , j ) can only move to spaces ( i 1 , j 1 ) where i 1 ≡ i ( m o d 3 ) and j 1 ≡ j ( m o d 3 ) .
In the diagram below, each different shade of grey corresponds to a different value of ( i , j ) ( m o d 3 ) . Identical colors means a checker of that color can move to any other spot of the same color.
It's clear now that:
( 1 , 1 ) ( m o d 3 ) ⟹ 9 different spaces ( 1 , 2 ) ( m o d 3 ) ⟹ 9 different spaces ( 1 , 3 ) ( m o d 3 ) ⟹ 6 different spaces ( 2 , 1 ) ( m o d 3 ) ⟹ 9 different spaces ( 2 , 2 ) ( m o d 3 ) ⟹ 9 different spaces ( 2 , 3 ) ( m o d 3 ) ⟹ 6 different spaces ( 3 , 1 ) ( m o d 3 ) ⟹ 6 different spaces ( 3 , 2 ) ( m o d 3 ) ⟹ 6 different spaces ( 3 , 3 ) ( m o d 3 ) ⟹ 4 different spaces
In our original setup of 3 2 checkers in one half of the board, we have:
6 checkers ≡ ( 1 , 1 ) ( m o d 3 ) 3 checkers ≡ ( 1 , 2 ) ( m o d 3 ) 3 checkers ≡ ( 1 , 3 ) ( m o d 3 ) 6 checkers ≡ ( 2 , 1 ) ( m o d 3 ) 3 checkers ≡ ( 2 , 2 ) ( m o d 3 ) 3 checkers ≡ ( 2 , 3 ) ( m o d 3 ) 4 checkers ≡ ( 3 , 1 ) ( m o d 3 ) 2 checkers ≡ ( 3 , 2 ) ( m o d 3 ) 2 checkers ≡ ( 3 , 3 ) ( m o d 3 )
Thus the number of different arrangements is: ( 6 9 ) ⋅ ( 3 9 ) ⋅ ( 3 6 ) ⋅ ( 6 9 ) ⋅ ( 3 9 ) ⋅ ( 3 6 ) ⋅ ( 4 6 ) ⋅ ( 2 6 ) ⋅ ( 2 4 ) = 2 6 8 8 5 0 5 3 4 4 0 0 0 0
Thus M = 4 and N = 2 6 8 8 5 0 5 3 4 4 so the last three digits of M + n is 3 4 8 .