返回题库

耕地紧急:最少增派多少农夫

Farming Emergency

专题
Brainteaser / 脑筋急转弯
难度
L2

题目详情

农业公司要耕 11 块地。最初有 4 位农夫,耕完 2 块地总共花了 5 小时。

公司希望在接下来的 12 小时内耕完剩余 9 块地。假设效率线性、每块地耗时相同、农夫速率一致。

问:最少需要再增派多少位农夫?

A farming company has been hired to till 1111 plots of land. 44 farmers are initially hired. It takes them a total of 55 hours to till 22 of the plots. The farming company decides to enlist more farmers to finish up the job within the next 1212 hours. What is the minimum number of additional farmers the company could have sent so that the other 99 plots of land are tilled in the next 1212 hours? You may assume all plots take the same time to till, individual farmers work at equal constant rates, and that they will work at the same efficiency regardless of the number of farmers there.

解析

4 人 5 小时共 20 人时耕 2 块地,故单个农夫速率为 2/20=1/102/20=1/10 块/小时。

若增派 nn 人,则 12 小时可耕地数为

12(4+n)11094+n7.5n3.5.12(4+n)\cdot\frac{1}{10} \ge 9\Rightarrow 4+n\ge 7.5\Rightarrow n\ge 3.5.

因此最少需要增派 4 人。


Original Explanation

Let xx be the rate at which an individual farmer tills per hour. There were 2020 "farmer hours" of work to till 22 plots of land, as there were 44 farmers working for 55 hours. Therefore, 20x=220x = 2, so x=110x = \frac{1}{10}.

Our job is to find the minimal integer nn such that 110(4+n)129\frac{1}{10} \cdot (4 + n) \cdot 12 \geq 9.

This is since there would be 4+n4+n farmers if nn farmers are sent and they work for 1212 hours, so we would be 12(4+n)12(4+n) farmer hours. Solving this, we get that n72n \geq \frac{7}{2}. This means that n=4n = 4, as nn must be an integer.

To confirm this answer, we see that with 88 total farmers, they would work at a rate of 1108=45\frac{1}{10} \cdot 8 = \frac{4}{5} of a plot per hour, so it would take them 454<12\frac{45}{4} < 12 hours to till 99 plots.