返回题库

AIME 1985 · 第 8 题

AIME 1985 — Problem 8

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

The sum of the following seven numbers is exactly 19: a1=2.56a_1 = 2.56, a2=2.61a_2 = 2.61, a3=2.65a_3 = 2.65, a4=2.71a_4 = 2.71, a5=2.79a_5 = 2.79, a6=2.82a_6 = 2.82, a7=2.86a_7 = 2.86. It is desired to replace each aia_i by an integer approximation AiA_i, 1i71\le i \le 7, so that the sum of the AiA_i's is also 19 and so that MM, the maximum of the "errors" Aiai\| A_i-a_i\|, the maximum absolute value of the difference, is as small as possible. For this minimum MM, what is 100M100M?

Explanation of the Question

Note: please read the explanation AFTER YOU HAVE TRIED reading the problem but couldn't understand.

For the question. Let's say that you have determined 7-tuple (A1,A2,A3,A4,A5,A6,A7)(A_1,A_2,A_3,A_4,A_5,A_6,A_7). Then you get the absolute values of the 77 differences. Namely,

A1a1,A2a2,A3a3,A4a4,A5a5,A6a6,A7a7|A_1-a_1|, |A_2-a_2|, |A_3-a_3|, |A_4-a_4|, |A_5-a_5|, |A_6-a_6|, |A_7-a_7| Then MM is the greatest of the 77 absolute values. So basically you are asked to find the 7-tuple (A1,A2,A3,A4,A5,A6,A7)(A_1,A_2,A_3,A_4,A_5,A_6,A_7) with the smallest MM, and the rest would just be a piece of cake.

解析

Solution 1

Let {x}\{x\} denote the fractional part of xx.

Because {2.86}{2.56}=0.3\{2.86\} - \{2.56\} = 0.3, we see that the maximum spread of the numbers is 0.30.3, and the median spread of the numbers is 0.150.15.

Now, we take inspiration from rounding decimals. Note how if we have one positive integer aa and another positive integer a+1a+1, then a+1a=1a+1-a=1, and the median spread is 1/21/2, or 0.50.5. Then, the following piecewise function is acquired. If a number nn satisfies a<n<a+1a < n < a+1, then if {n}<0.5\{n\} < 0.5, we take n\lfloor{n} \rfloor, and if {n}0.5\{n\} \ge 0.5, we take n\lceil{n} \rceil.

Applying this to our scenario, we have 2<ai<32 < a_i < 3 and the median spread is 2.52.5. So, to determine a judgement in our scenario, we use the following piecewise function of AiA_i.

If {ai}<2.5+0.15=2.65\{a_i\} < 2.5 + 0.15 = 2.65, then take ai\lfloor{a_i} \rfloor, and if {ai}2.65\{a_i\} \ge 2.65, take ai\lceil{a_i} \rceil.

For all 7 numbers, we apply these and get 2, 2, 3, 3, 3, 3, 3. Adding them results in 35+4=193 \cdot 5 + 4 = 19, which satisfies the constraint, and the greatest value of MM is determined from 2.612.61=0.612.61 - \lfloor{2.61} \rfloor = 0.61.

This is guarenteed as notice that all ai>2.5a_i > 2.5, and in general the rounding principle states that if a number nn has the property that {n}<{2.5}\{n\} < \{2.5\}, then take n\lfloor{n} \rfloor and if {n}{2.5}\{n\} \ge \{2.5\}, then take n\lceil{n} \rceil, in which we can adjust using the same principle here.

In addition to this problem, this idea is reminiscent for ALL problems of this category, so one additional concept to add to your problem solving toolkit.

Thus, M=0.61M = 0.61, and 100M=100×0.61=100M = 100 \times 0.61 =061\boxed{061}

~Pinotation

Solution 2

If any of the approximations AiA_i is less than 2 or more than 3, the error associated with that term will be larger than 1, so the largest error will be larger than 1. However, if all of the AiA_i are 2 or 3, the largest error will be less than 1. So in the best case, we write 19 as a sum of 7 numbers, each of which is 2 or 3. Then there must be five 3s and two 2s. It is clear that in the best appoximation, the two 2s will be used to approximate the two smallest of the aia_i, so our approximations are A1=A2=2A_1 = A_2 = 2 and A3=A4=A5=A6=A7=3A_3 = A_4 = A_5 = A_6 = A_7 = 3 and the largest error is A2a2=0.61|A_2 - a_2| = 0.61, so the answer is 061\boxed{061}.