返回题库

AIME 2007 II · 第 1 题

AIME 2007 II — Problem 1

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

A mathematical organization is producing a set of commemorative license plates. Each plate contains a sequence of five characters chosen from the four letters in AIME and the four digits in 2007. No character may appear in a sequence more times than it appears among the four letters in AIME or the four digits in 2007. A set of plates in which each possible sequence appears exactly once contains N license plates. Find N10\frac{N}{10}.

解析

Solution 1

There are 7 different characters that can be picked, with 0 being the only number that can be repeated twice.

  • If 00 appears 0 or 1 times amongst the sequence, there are 7!(75)!=2520\frac{7!}{(7-5)!} = 2520 sequences possible.
  • If 00 appears twice in the sequence, there are (52)=10{5\choose2} = 10 places to place the 00s. There are 6!(63)!=120\frac{6!}{(6-3)!} = 120 ways to place the remaining three characters. In total, that gives us 10120=120010 \cdot 120 = 1200.

Thus, N=2520+1200=3720N = 2520 + 1200 = 3720, and N10=372\frac{N}{10} = \boxed{372}.

Solution 2

Another approach is to first falsely assume that the zeros are distinguishable and then correct the over-counting.

We can name the zeros 010_1 and 020_2. The first character has 8 choices - A,I,M,E,2,01,02,A,I,M,E,2,0_1,0_2, and 77. The second character has 77 choices, the third has 66 choices, the fourth has 55 choices, and the fifth has 44 choices. Multiplying them all together, there are 6,7206,720 arrangements where the zeros are distinguishable.

However, some cases with at most 2 zeros are over-counted. We can tackle this by going case by case for the number of zeros. When there are no zeros there will be no arrangements over-counted.

When there is exactly 11 zero, all the cases are over-counted. This is because there will be another case with the exact same characters but the zero will be switched with the other zero. The number of ways to place the zero is 55, there are 22 zeros to choose from, and the remaining spots have 65436 \cdot 5 \cdot 4 \cdot 3 ways to place the non-zero characters. Thus, there are 526543=3,6005 \cdot 2 \cdot 6 \cdot 5 \cdot 4 \cdot 3 = 3,600 arrangements where there is exactly one zero. However, we need to remove half of these or 1,8001,800 from the total yielding in 4,9204,920 arrangements left.

Cases with two zeros would also have to be corrected as the zeros are interchangeable and you can switch the ordering of them. The number of ways to place 010_1 is 55, the number of ways to place 020_2 is 44, and the remaining places have 6546 \cdot 5 \cdot 4 ways to place the remaining characters. In total, there are 54654=2,4005 \cdot 4 \cdot 6 \cdot 5 \cdot 4 = 2,400 arrangements with exactly two zeros. However, we need to remove half of these or 1,2001,200 from the total yielding in 3,7203,720 arrangements left.

The max number of zeros is two so we have gone through all the cases and removed the over-counted arrangements thus giving, N=3,720N = 3,720 and N10=372\frac{N}{10} = \boxed{372}.

~ Logicalrhino65