返回题库

AIME 2019 I · 第 4 题

AIME 2019 I — Problem 4

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

A soccer team has 2222 available players. A fixed set of 1111 players starts the game, while the other 1111 are available as substitutes. During the game, the coach may make as many as 33 substitutions, where any one of the 1111 players in the game is replaced by one of the substitutes. No player removed from the game may reenter the game, although a substitute entering the game may be replaced later. No two substitutions can happen at the same time. The players involved and the order of the substitutions matter. Let nn be the number of ways the coach can make substitutions during the game (including the possibility of making no substitutions). Find the remainder when nn is divided by 10001000.

解析

Solution 1 (Recursion)

There are 030-3 substitutions. The number of ways to sub any number of times must be multiplied by the previous number. This is defined recursively. The case for 00 subs is 11, and the ways to reorganize after nn subs is the product of the number of new subs (12n12-n) and the players that can be ejected (1111). The formula for nn subs is then an=11(12n)an1a_n=11(12-n)a_{n-1} with a0=1a_0=1.

Summing from 00 to 33 gives 1+112+11310+1141091+11^2+11^{3}\cdot 10+11^{4}\cdot 10\cdot 9. Notice that 10+91110=10+990=100010+9\cdot11\cdot10=10+990=1000. Then, rearrange it into 1+112+113(10+11109)=1+112+113(1000)1+11^2+11^3\cdot (10+11\cdot10\cdot9)= 1+11^2+11^3\cdot (1000). When taking modulo 10001000, the last term goes away. What is left is 1+112=1221+11^2=\boxed{122}.

~BJHHar

Solution 2 (Casework)

We can perform casework. Call the substitution area the "bench".

Case 1\textbf{Case 1}: No substitutions. There is 11 way of doing this: leaving everybody on the field.

Case 2\textbf{Case 2}: One substitution. Choose one player on the field to sub out, and one player on the bench. This corresponds to 1111=12111\cdot 11 = 121.

Case 3\textbf{Case 3}: Two substitutions. Choose one player on the field to sub out, and one player on the bench. Once again, this is 111111\cdot 11. Now choose one more player on the field to sub out and one player on the bench that was not the original player subbed out. This gives us a total of 11111110=13310310mod100011\cdot 11\cdot 11\cdot 10 = 13310\equiv 310 \bmod{1000}.

Case 4\textbf{Case 4}: Three substitutions. Using similar logic as Case 3\textbf{Case 3}, we get (1111)(1110)(119)(11\cdot 11)\cdot (11\cdot 10)\cdot (11\cdot 9). The resulting number ends in 690690.

Therefore, the answer is 1+121+310+690122(mod1000)1 + 121 + 310 + 690 \equiv \boxed{122} \pmod{1000}.

~minor mistake fixed by Prism Melody

Solution 3 (Official MAA)

There is 11 way of making no substitutions to the starting lineup. If the coach makes exactly one substitution, this can be done in 11211^2 ways. Two substitutions can happen in 112111011^2\cdot11\cdot 10 ways. Similarly, three substitutions can happen 112111011911^2\cdot11\cdot10\cdot11\cdot9 ways. The total number of possibilities is 1+112+1121110+1121110119=122+113(10+990)122(mod1000).1+11^2+11^2\cdot11\cdot10+11^2\cdot11\cdot10\cdot11\cdot9=122+11^3(10+990)\equiv 122\pmod{1000}.

Solution 4 (No time left)

If you make no substitutions, there is 11 way of doing that. If you make 11 substitution, you choose 11 substitute and 11 player, for a total of 11×11=12111\times11=121 ways. Then you suddenly realized you got no time, and you decided to put what you got so far, which is 1+121=1221+121=\boxed{122}, and it turned out to be the correct answer.

~metrixgo

Video Solution #1(A bit of casework, a bit of counting)

https://youtu.be/JQdad7APQG8?t=981

Video Solution

https://youtu.be/I-8xZGhoDUY

~Shreyas S