HMMT 十一月 2018 · 团队赛 · 第 8 题
HMMT November 2018 — Team Round — Problem 8
题目详情
- [ 55 ] Tessa has a unit cube, on which each vertex is labeled by a distinct integer between 1 and 8 inclusive. She also has a deck of 8 cards, 4 of which are black and 4 of which are white. At each step she draws a card from the deck, and • if the card is black, she simultaneously replaces the number on each vertex by the sum of the three numbers on vertices that are distance 1 away from this vertex; • if the card is white, she simultaneously replaces the number on each vertex by the sum of the √ three numbers on vertices that are distance 2 away from this vertex. When Tessa finishes drawing all cards of the deck, what is the maximum possible value of a number that is on the cube?
解析
- [ 55 ] Tessa has a unit cube, on which each vertex is labeled by a distinct integer between 1 and 8 inclusive. She also has a deck of 8 cards, 4 of which are black and 4 of which are white. At each step she draws a card from the deck, and • if the card is black, she simultaneously replaces the number on each vertex by the sum of the three numbers on vertices that are distance 1 away from this vertex; • if the card is white, she simultaneously replaces the number on each vertex by the sum of the √ three numbers on vertices that are distance 2 away from this vertex. When Tessa finishes drawing all cards of the deck, what is the maximum possible value of a number that is on the cube? Proposed by: Yuan Yao Answer: 42648 The order of the deck does not matter as black cards and white cards commute, therefore we can assume that the cards are alternating black and white, and only worry about the arrangement of the numbers. After each pair of black and white cards, each number is replaced by the sum of two times the edge neighbors and three times the diagonally opposite number. We can compute that after four pairs of operations, the number at vertex V will be 1641 v + 1640( d + d + d ), where v is the number originally 1 2 3 at v and d , d , d are the numbers at diagonally adjacent vertices. Set v = 8 and d , d , d = 5 , 6 , 7 in 1 2 3 1 2 3 any order to obtain the maximum number 42648.