返回题库

AIME 2014 II · 第 9 题

AIME 2014 II — Problem 9

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Ten chairs are arranged in a circle. Find the number of subsets of this set of chairs that contain at least three adjacent chairs.

解析

Solution 1 (Casework)

We know that a subset with less than 33 chairs cannot contain 33 adjacent chairs. There are only 1010 sets of 33 chairs so that they are all 33 adjacent. There are 1010 subsets of 44 chairs where all 44 are adjacent, and 10510 \cdot 5 or 5050 where there are only 3.3. If there are 55 chairs, 1010 have all 55 adjacent, 10410 \cdot 4 or 4040 have 44 adjacent, and 10(52)10 \cdot {5\choose 2} or 100100 have 33 adjacent. With 66 chairs in the subset, 1010 have all 66 adjacent, 10(3)10(3) or 3030 have 55 adjacent, 10(42)10 \cdot {4\choose2} or 6060 have 44 adjacent, 1032\frac{10 \cdot 3}{2} or 1515 have 22 groups of 33 adjacent chairs, and 10((52)3)10 \cdot \left({5\choose2} - 3\right) or 7070 have 11 group of 33 adjacent chairs. All possible subsets with more than 66 chairs have at least 11 group of 33 adjacent chairs, so we add (107){10\choose7} or 120120, (108){10\choose8} or 4545, (109){10\choose9} or 1010, and (1010){10\choose10} or 1.1. Adding, we get 10+10+50+10+40+100+10+30+60+15+70+120+45+10+1=581.10 + 10 + 50 + 10 + 40 + 100 + 10 + 30 + 60 + 15 + 70 + 120 + 45 + 10 + 1 = \boxed{581}.

Solution 2 (PIE)

Starting with small cases, we see that four chairs give 4+1=54 + 1 = 5, five chairs give 5+5+1=115 + 5 + 1 = 11, and six chairs give 6+6+6+6+1=25.6 + 6 + 6 + 6 + 1 = 25. Thus, n chairs should give n2n4+1n 2^{n-4} + 1, as confirmed above. This claim can be verified by the principle of inclusion-exclusion: there are n2n3n 2^{n-3} ways to arrange 33 adjacent chairs, but then we subtract n2n4n 2^{n-4} ways to arrange 4.4. Finally, we add 11 to account for the full subset of chairs. Thus, for n=10n = 10 we get a first count of 641.641.

However, we overcount cases in which there are two distinct groups of three or more chairs. We have 55 cases for two groups of 33 directly opposite each other, 55 for two groups of four, 2020 for two groups of 33 not symmetrically opposite, 2020 for a group of 33 and a group of 44, and 1010 for a group of 33 and a group of 5.5. Thus, we have 64160=581641 - 60 = \boxed{581}.

Solution 3 (Complementary Counting and Recursion)

It is possible to use recursion to count the complement. Number the chairs 1,2,3,...,10.1, 2, 3, ..., 10. If chair 11 is not occupied, then we have a line of 99 chairs such that there is no consecutive group of three. If chair 11 is occupied, then we split into more cases. If chairs 22 and 1010 are empty, then we have a line of 7.7. If chair 22 is empty but chair 1010 is occupied, then we have a line of 66 chairs (because chair 99 cannot be occupied); this is similar to when chair 22 is occupied and chair 1010 is empty. Finally, chairs 22 and 1010 cannot be simultaneously occupied. Thus, we have reduced the problem down to computing T9+T7+2T6T_9 + T_7 + 2T_6, where TnT_n counts the ways to select a subset of chairs in a line\textit{in a line} from a group of n chairs such that there is no group of 33 chairs in a row.

Now, we notice that Tn=Tn1+Tn2+Tn3T_n = T_{n-1} + T_{n-2} + T_{n-3} (representing the cases when the first, second, and/or third chair is unoccupied). Also, T0=1,T1=2,T2=4,T3=7T_0 = 1, T_1 = 2, T_2 = 4, T_3 = 7, and hence T4=13,T5=24,T6=44,T7=81,T8=149,T9=274T_4 = 13, T_5 = 24, T_6 = 44, T_7 = 81, T_8 = 149, T_9 = 274. Now we know the complement is 274+81+88=443274 + 81 + 88 = 443, and subtracting from 210=10242^{10} = 1024 gives 1024443=5811024 - 443 = \boxed{581}.

Solution 4

Let's calculate the complement. As mentioned in solution 33, the number of ways to have a subset nn chairs in a line with no 3 consectuive chairs satisfies Tn=Tn1+Tn2+Tn3T_n = T_{n-1} + T_{n-2} + T_{n-3}. Setting T1=2,T2=4T_{1} = 2, T_{2} = 4, and T3=7T_{3} = 7, we get that T10=504T_{10} = 504. Since this is in a line and not a circle, we must subtract the cases that would include 3 consecutive chairs if the endpoints of the line were put together. If chairs 11, 22 and 1010 are in the subset, that would not work. The same goes for if chairs 11, 99 and 1010 were in the subset. If chairs 11, 22 and 1010 are in the set then chair 33 must not be in the set. However, chair 99 could be in or not in the set because we only want to count what cases where no 33 chairs are consecutive in the line but there would be consecutive chairs in a circle. If chair 99 is not included, there are T5=24T_{5} = 24 ways. If chair 99 is in the set then there are T4=13T_{4} = 13 ways. So we must subtract 2(24+13)=742 \cdot (24 + 13) = 74 However we are counting the case where chairs 11, 22, 99 and 1010 are included twice. So we only have to subtract 7413=6174 - 13 = 61. 50461=443504 - 61 = 443. This entire time we were calculating the complement so 210443=5812^{10} - 443 = \fbox{581}

~sdfgfjh