HMMT 二月 2001 · ADV 赛 · 第 4 题
HMMT February 2001 — ADV Round — Problem 4
题目详情
- Boris was given a Connect Four game set for his birthday, but his color-blindness makes it hard to play the game. Still, he enjoys the shapes he can make by dropping checkers into the set. If the number of shapes possible modulo (horizontal) flips about the vertical axis of symmetry is expressed as 9(1 + 2 + · · · + n ), find n . (Note: the board is a vertical grid with seven columns and eight rows. A checker is placed into the grid by dropping it from the top of a column, and it falls until it hits either the bottom of the grid or another checker already in that column. Also, 9(1 + 2 + · · · + n ) is the number of shapes possible, with two shapes that are horizontal flips of each other counted as one. In other words, the shape that consists solely of 3 checkers in the rightmost row and the shape that consists solely of 3 checkers in the leftmost row are to be considered the same shape.)
解析
- Boris was given a Connect Four game set for his birthday, but his color-blindness makes it hard to play the game. Still, he enjoys the shapes he can make by dropping checkers into the set. If the number of shapes possible modulo (horizontal) flips about the vertical axis of symmetry is expressed as 9(1 + 2 + · · · + n ), find n . (Note: the board is a vertical grid with seven columns and eight rows. A checker is placed into the grid by dropping it from the top of a column, and it falls until it hits either the bottom of the grid or another checker already in that column. Also, 9(1 + 2 + · · · + n ) is the number of shapes possible, with two shapes that are horizontal flips of each other counted as one. In other words, the shape that consists solely of 3 checkers in the rightmost row and the shape that consists solely of 3 checkers in the leftmost row are to be considered the same shape.) 7 Solution: There are 9 total shapes possible, since each of the 7 columns can contain anywhere from 0 to 8 checkers. The number of shapes symmetric with respect to a horizontal flip is the number of shapes of the leftmost four columns, since the configuration of these four columns uniquely determines the configuration of the remaining columns if it is known 4 7 4 the shape is symmetric: 9 . Now we know there are 9 − 9 non-symmetric shapes, so there 7 4 9 − 9 are non-symmetric shapes modulo flips. Thus the total number of shapes modulo flips 2 ( ) ( ) 8 6 6 6 7 4 3 3 3 (3 − 1) 3 (3 +1) 9 − 9 9 − 1 9 +1 4 4 4 6 is 9 + = 9 1 + = 9 = ( = 9 = 9(1 + 2 + · · · + 3 ), so 2 2 2 2 2 6 n = 3 = 729 .