百码冲刺
100-Yard Dash
题目详情
100 码短跑比赛中有 6 名参赛者。如果可能出现平局,有多少种方式颁发三枚奖牌?
(以最快的成绩完赛的选手获得金牌,仅领先一名选手的选手获得银牌,仅领先两名选手的选手获得铜牌。)
There are six runners in the 100-yard dash. How many ways are there for three medals to be awarded if ties are possible?
(The runner or runners who finish with the fastest time receive gold medals, the runner or runners who finish with exactly one runner ahead receive silver medals, and the runner or runners who finish with exactly two runners ahead receive bronze medals.)
解析
把“颁发方式”按最终出现的奖牌集合分成 4 类:
1)只颁发金牌。 2)颁发金牌和银牌。 3)颁发金牌和铜牌。 4)颁发金牌、银牌和铜牌。
分别计数:
1)只颁发金牌意味着第一名至少有 3 人并列(否则会出现银牌或铜牌)。
2)颁发金牌和银牌:必须只有 1 人获得金牌,其余人并列第二;并且并列第二的人数至少为 2(否则会出现铜牌)。
3)颁发金牌和铜牌:必须恰好 2 人并列第一(两枚金牌),并且至少 1 人获得铜牌(可以多人并列)。
4)颁发金银铜牌:必须恰好 1 人金牌、恰好 1 人银牌,并且至少 1 人铜牌(可并列)。
四类互斥相加:
Original Explanation
This question reduces to counting the number of ways in which final assignments can take place. Let's begin by enumerating the possible medals awarded.
- We could have the most simple case, where only gold medals are awarded.
- We could have the case where only gold and silver medals are awarded.
- We could have the case where gold and bronze medals are awarded.
- Lastly, we could have the case where all gold, silver, and bronze medals are awarded.
Let's now begin to count the number of ways in which each case could occur.
1: If only gold medals are awarded, then there must have been a tie for first place. Furthermore, since no silver or bronze medals are awarded, this further stipulates that the number of people who tied for first must either be 3, 4, 5, or 6 (this would ensure no other medals are awarded). We can count the number of ways to choose these many people from the total by the following sum:
2: We next have the case where gold and silver medals are awarded. In order for this case to occur, however, there can only be gold medalist, and the remaining people must tie for second (otherwise, if we had multiple gold medalists, it would be impossible to have a silver medalist). Furthermore, amongst the remaining people who tie for second, we have at least two of them (otherwise, if there's only one, we'd have a bronze medalist as well). We can count the number of ways using the product rule for each subcase:
3: We now have the case where gold and bronze medals are awarded. Note that in order for this to happen, exactly two gold medals must be awarded, and at least one person must be awarded a bronze (we can have multiple people tie for bronze). This can happen as such:
4: Lastly, we have the case where gold, silver, and bronze medals are awarded. This can happen if exactly one person is awarded the gold, exactly one silver is awarded, and at least one person gets bronze (just as above, we can have multiple people tie for bronze).
Each of these cases is distinct, they can't occur at the same time. So summing over the possible ways each can occur gives us the total number of ways the medals can be awarded.