返回题库

AIME 2003 I · 第 3 题

AIME 2003 I — Problem 3

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Let the set S={8,5,1,13,34,3,21,2}.\mathcal{S} = \{8, 5, 1, 13, 34, 3, 21, 2\}. Susan makes a list as follows: for each two-element subset of S,\mathcal{S}, she writes on her list the greater of the set's two elements. Find the sum of the numbers on the list.

解析

Solution

Order the numbers in the set from greatest to least to reduce error: {34,21,13,8,5,3,2,1}.\{34, 21, 13, 8, 5, 3, 2, 1\}. Each element of the set will appear in 77 two-element subsets, once with each other number.

  • 3434 will be the greater number in 77 subsets.
  • 2121 will be the greater number in 66 subsets.
  • 1313 will be the greater number in 55 subsets.
  • 88 will be the greater number in 44 subsets.
  • 55 will be the greater number in 33 subsets.
  • 33 will be the greater number in 22 subsets.
  • 22 will be the greater number in 11 subsets.
  • 11 will be the greater number in 00 subsets.

Therefore the desired sum is 347+216+135+84+53+32+21+10=48434\cdot7+21\cdot6+13\cdot5+8\cdot4+5\cdot3+3 \cdot2+2\cdot1+1\cdot0=\boxed{484}.

Note: Note that 7+6+5+4+3+2+1=(82)7+6+5+4+3+2+1=\binom{8}{2}, so we have counted all the possible cases.

~Yiyj1

Solution

Thinking of this problem algorithmically, one can "sort" the array to give:

1,2,3,5,8,13,21,34{1, 2, 3, 5, 8, 13, 21, 34} Now, notice that when we consider different pairs, we are only going to fixate one element and look at the all of the next elements in the array, basically the whole j=i+1j = i + 1 shebang. Then, we see that if we set the sum of the whole array to x,x, we get out answer to be

(x1)+(x3)+(x6)+(x11)+(x19)+(x32)+(x53)=7x125(x-1) + (x-3) + (x-6) + (x-11) + (x-19) + (x-32) + (x-53) = 7x - 125 Finding 7x7x isn't hard, and we see that it is equal to 609609:

609125=484609 - 125 = \boxed{484}