A game is played with the integers 0 through 11 as follows:
What is the maximum score you can achieve?
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.
We can circle the numbers 1 , 5 , 7 , 1 1 , 2 , 1 0 , 4 , 8 , 0 in that order, for a final score of 4 8 . This only misses the numbers 3 , 6 , 9 .
The key fact is: if a is the current number and b is the next number circled, then g cd ( a , 1 2 ) ∣ g cd ( b , 1 2 ) .
So we can only circle 3 or 9 from a starting point of 1 , 5 , 7 , or 1 1 . Once we circle 3 or 9 , we can only circle 3 , 6 , 9 , 0 before finishing. So the best we could do by circling 3 or 9 would be 1 , 5 , 7 , 1 1 , 3 , 6 , 9 , 0 , which sums to 4 2 . So the maximal-score game must avoid circling 3 and 9 .
As for 6 , we can circle it from anywhere except 4 and 8 ; but once we circle it, we can only circle 0 and then finish. So if we circle 6 , we can't circle 4 and 8 . We've already decided that we must skip 3 and 9 , so skipping 4 and 8 as well would result in a max score of 0 + 1 + 2 + 5 + 6 + 7 + 1 0 + 1 1 = 4 2 , which is smaller than our already achieved score of 4 8 . Hence we must skip 6 as well. Thus 4 8 is the maximum achievable score.