Milk Pails
의견: 0
Farmer John has received an order for exactly \(M\) units of milk
(\(1 \leq M \leq 1,000\)) that he needs to fill right away. Unfortunately, his
fancy milking machine has just become broken, and all he has are three milk
pails of integer sizes \(X\), \(Y\), and \(M\) (\(1 \leq X < Y < M\)). All three pails
are initially empty. Using these three pails, he can perform any number of the
following two types of operations:
-
He can fill the smallest pail (of size \(X\)) completely to the top with \(X\)
units of milk and pour it into the size-\(M\) pail, as long as this will not cause
the size-\(M\) pail to overflow. -
He can fill the medium-sized pail (of size \(Y\)) completely to the top with \(Y\)
units of milk and pour it into the size-\(M\) pail, as long as this will not cause
the size-\(M\) pail to overflow.
Although FJ realizes he may not be able to completely fill the size-\(M\) pail,
please help him determine the maximum amount of milk he can possibly add to this
pail.
Problem credits: Brian Dean
Problem credits: Brian Dean
The first, and only line of input, contains \(X\), \(Y\), and \(M\), separated by spaces.
Output the maximum amount of milk FJ can possibly add to the size-\(M\) pail.
pails.inpails.out17 25 7776In this example, FJ fills the pail of size 17 three times and the pail of size
25 once, accumulating a total of 76 units of milk.
riseoj 작성
출처 올림피아드 > USACO > 2015-2016 > February > Bronze
평가 및 의견
Milk Pails
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Milk Pails