#P3139. [USACO16FEB] Milk Pails S

[USACO16FEB] Milk Pails S

题目描述

Farmer John has received an order for exactly MM units of milk (1M2001 \leq M \leq 200) that he needs to fill right away. Unfortunately, his fancy milking machine has just become broken, and all he has are two milk pails of integer sizes XX and YY (1X,Y1001 \leq X, Y \leq 100) with which he can measure milk. Both pails are initially empty. Using these two pails, he can perform up to KK of the following types of operations (1K1001 \leq K \leq 100):

  • He can fill either pail completely to the top.

  • He can empty either pail.

  • He can pour the contents of one pail into the other, stopping when the former becomes empty or the latter becomes full (whichever of these happens first).

Although FJ realizes he may not be able to end up with exactly MM total units of milk in the two pails, please help him compute the minimum amount of error between MM and the total amount of milk in the two pails. That is, please compute the minimum value of MM|M-M'| such that FJ can construct MM' units of milk collectively between the two pails.

FJ 最近刚收到了解决 MM1m2001 \leq m \leq 200)个单位牛奶的指令。他有两个桶,大小分别为 X,YX, Y1X,Y1001 \leq X, Y \leq 100)。

他可以选择执行如下操作 kk1k1001 \leq k \leq 100)次:

他可以在任意一个桶中装满牛奶;他可以倒空任意一个桶;他可以将一个桶里的奶倒入另一个桶中,直到倒空或另一个桶被倒满

尽管 FJ 意识到他可能不能在两个桶中刚好装下 MM 个单位的牛奶,但请你算出他经过操作后,两桶牛奶的和同 MM 的差值最小是多少。

输入格式

The first, and only line of input, contains XX, YY, KK, and MM.

输出格式

Output the smallest distance from MM to an amount of milk FJ can produce.

14 50 2 32
18

提示

In two steps FJ can be left with the following quanities in his pails

(0, 0) = 0 units
(14, 0) = 14 units
(0, 50) = 50 units
(0, 14) = 14 units
(14, 36) = 50 units
(14, 50) = 64 units

The closest we can come to 32 units is 14 for a difference of 18. Note that it

would require an extra step to pour out the first pail to end up with (0, 36).