AIME 2026 II · 第 13 题
AIME 2026 II — Problem 13
题目详情
Problem
Call finite sets of integers and cousins if
- and have the same number of elements,
- and are disjoint, and
- the elements of can be paired with the elements of so that the elements in each pair differ by exactly .
For example, and are cousins. Suppose that the set has exactly cousins. Find the least number of elements the set can have.
解析
Solution 1 (Grouping Numbers)
Firstly, notice that if we have an element in , there will be exactly options for the element in that can pair with the element in . However, if elements in have a difference of , then their pairs will not be independent.
For example, consider and : can pair with or while can pair with or . However, cannot pair with both and , so we have possibilities.
As a result, we can show that if we have a group of elements in set that form an arithmetic sequence with common difference , then there are exactly ways to create pairs with elements in set . 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 and each set separated by a difference of . Then we can easily control what factors we need to get .
We know , so our groups of elements will result in . Thus, the lengths of our groups are .
This gives a total of elements.
Therefore, the least number of elements that set can have is .
~pl246631