返回题库

AIME 2026 II · 第 13 题

AIME 2026 II — Problem 13

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Call finite sets of integers SS and TT cousins if

  • SS and TT have the same number of elements,
  • SS and TT are disjoint, and
  • the elements of SS can be paired with the elements of TT so that the elements in each pair differ by exactly 11.

For example, {1,2,5}\{1,2,5\} and {0,3,4}\{0,3,4\} are cousins. Suppose that the set SS has exactly 40404040 cousins. Find the least number of elements the set SS can have.

解析

Solution 1 (Grouping Numbers)

Firstly, notice that if we have an element in SS, there will be exactly 22 options for the element in TT that can pair with the element in SS. However, if 22 elements in SS have a difference of 22, then their pairs will not be independent.

For example, consider 11 and 33: 11 can pair with 00 or 22 while 33 can pair with 22 or 44. However, 22 cannot pair with both 11 and 33, so we have 33 possibilities.

As a result, we can show that if we have a group of xx elements in set SS that form an arithmetic sequence with common difference 22, then there are exactly x+1x+1 ways to create pairs with elements in set TT. This result can be proved by induction. We can model this idea by thinking about separating each "set" of number that differ with each neighbor by 11 and each set separated by a difference of 22. Then we can easily control what factors we need to get 40404040.

We know 4040=1012354040 = 101 \cdot 2^3 \cdot 5, so our groups of xx elements will result in x+1=101,2,2,2,5x+1 = 101, 2, 2, 2, 5. Thus, the lengths of our groups are 100,1,1,1,4100, 1, 1, 1, 4.

This gives a total of 100+1+1+1+4=107100 + 1 + 1 + 1 + 4 = 107 elements.

Therefore, the least number of elements that set SS can have is 107\boxed{107}.

~pl246631