返回题库

AIME 2014 II · 第 13 题

AIME 2014 II — Problem 13

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Ten adults enter a room, remove their shoes, and toss their shoes into a pile. Later, a child randomly pairs each left shoe with a right shoe without regard to which shoes belong together. The probability that for every positive integer k<5k<5, no collection of kk pairs made by the child contains the shoes from exactly kk of the adults is mn\frac{m}{n}, where m and n are relatively prime positive integers. Find m+n.m+n.

解析

Solution

Label the left shoes be L1,,L10L_1,\dots, L_{10} and the right shoes R1,,R10R_1,\dots, R_{10}. Notice that there are 10!10! possible pairings.

Let a pairing be "bad" if it violates the stated condition. We would like a better condition to determine if a given pairing is bad.

Note that, in order to have a bad pairing, there must exist a collection of k<5k<5 pairs that includes both the left and the right shoes of kk adults; in other words, it is bad if it is possible to pick kk pairs and properly redistribute all of its shoes to exactly kk people.

Thus, if a left shoe is a part of a bad collection, its corresponding right shoe must also be in the bad collection (and vice versa). To search for bad collections, we can start at an arbitrary right shoe (say R1R_1), check the left shoe it is paired with (say LiL_i), and from the previous observation, we know that RiR_i must also be in the bad collection. Then we may check the left shoe paired with RiR_i, find its counterpart, check its left pair, find its counterpart, etc. until we have found L1L_1. We can imagine each right shoe "sending" us to another right shoe (via its paired left shoe) until we reach the starting right shoe, at which point we know that we have found a bad collection if we have done this less than 55 times.

Effectively we have just traversed a cycle. (Note: This is the cycle notation of permutations.) The only condition for a bad pairing is that there is a cycle with length less than 55; thus, we need to count pairings where every cycle has length at least 55. This is only possible if there is a single cycle of length 1010 or two cycles of length 55.

The first case yields 9!9! working pairings. The second case yields (105)24!2=10!25!24!2\frac{{10\choose 5}}{2}\cdot{4!}^2=\frac{10!}{2 \cdot {5!}^2} \cdot {4!}^2 pairings. Therefore, taking these cases out of a total of 10!10!, the probability is 110+150=325\frac{1}{10}+\frac{1}{50} = \frac{3}{25}, for an answer of 028\boxed{028}.

Video Solution

https://youtu.be/RFZOHbmmy2k?si=XOfC-akwHFKh3jy0

MathProblemSolvingSkills.com

Article/Blog post solution

https://www.commonsensiblemath.com/the-power-of-graphing-2014-aime-ii-p13/