Hide

Problem D
Circle of Debt

/problems/debt/file/statement/en/img-0001.jpg

The three friends Alice, Bob, and Cynthia always seem to get in situations where there are debts to be cleared among themselves. Of course, this is the “price” of hanging out a lot: it only takes a few resturant visits, movies, and drink rounds to get an unsettled balance. So when they meet as usual every Friday afternoon they begin their evening by clearing last week’s debts. To satisfy their mathematically inclined minds they prefer clearing their debts using as little money transaction as possible, i.e. by exchanging as few bank notes and coins as necessary. To their surprise, this can sometimes by harder than it sounds. Suppose that Alice owes Bob $10$ crowns and this is the three friends’ only uncleared debt, and Alice has a $50$ crown note but nothing smaller, Bob has three $10$ crown coins and ten $1$ crown coins, and Cynthia has three $20$ crown notes. The best way to clear the debt is for Alice to give her $50$ crown note to Cynthia, Cynthia to give two $20$ crown notes to Alice and one to Bob, and Bob to give one $10$ crown coin to Cynthia, involving a total of only five notes/coins changing owners. Compare this to the straight-forward solution of Alice giving her $50$ crown note to Bob and getting Bob’s three $10$ crown notes and all his $1$ crown coins for a total of fourteen notes/coins being exchanged!

Input

On the first line of input is a single positive integer, $1\leq t \leq 50$, specifying the number of test cases to follow. Each test case begins with three integers $ab,bc,ca \leq 1000$ on a line of itself. $ab$ is the amount Alice owes Bob (negative if it is Bob who owes Alice money), $bc$ the amount Bob owes Cynthia (negative if it is Cynthia who is in debt to Bob), and $ca$ the amount Cynthia owes Alice (negative if it is Alice who owes Cynthia).

Next follow three lines each with six non-negative integers $a_{100},a_{50},a_{20},a_{10},a_{5},a_1$, $b_{100},\dots ,b_1$, and $c_{100},\dots c_1$, respectively, where $a_{100}$ is the number of $100$ crown notes Alice got, $a_{50}$ is the number of her $50$ crown notes, and so on. Likewise, $b_{100},\dots , b_1$ is the amount of notes/coins of different value Bob got, and $c_{100},\dots ,c_1$ describes Cynthia’s money. Each of them has at most $30$ coins (i.e. $a_{10}+a_5+a_1,b_{10}+b_5+b_1,$ and $c_{10}+c_5+c_1$ are all less than or equal to $30$) and the total amount of all their money together (Alice’s plus Bob’s plus Cynthia’s) is always less than $1000$ crowns.

Output

For each test case there should be one line of output containing the minimum number of bank notes and coins needed to settle the balance. If it is not possible at all, output the string “impossible”.

Sample Input 1 Sample Output 1
3
10 0 0
0 1 0 0 0 0
0 0 0 3 0 10
0 0 3 0 0 0
-10 -10 -10
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
-10 10 10
3 0 0 0 2 0
0 2 0 0 0 1
0 0 1 1 0 3
5
0
impossible

Please log in to submit a solution to this problem

Log in