Problem G
Iron and Coal

The board consists of different cells numbered from
At the beginning of the game you own only one such cell, where all your settlers are located. At every move you are allowed to move an arbitrary number of settlers from a cell to one of its accessible neighbours. By moving your settlers into a cell for the first time, you “claim” it. Every claimed cell will bind one settler, which has to stay in this cell until the end of the game. However, there is no need to leave a settler in your initial cell because it is where your palace is located and thus the cell stays claimed for all time.
Your goal is to claim at least one cell containing the resource “iron ore” and at least one cell with resource “coal” in order to be able to build soldiers. What is the minimal number of settlers you need to reach this goal?
Input
The input consists of:
-
One line with three integers
( ), the number of cells on the playing field, ( ), the number of cells containing iron ore, and ( ), the number of cells containing coal. -
One line with
distinct integers ( for all ), where are the IDs of cells with iron ore. -
One line with
distinct integers ( for all ), where are the IDs of cells with coal. -
lines describing the topology of the board. The -th line of this block specifies the accessible neighbours of the -th cell and consists of the following integers:-
One integer
, the number of cells accessible from cell . -
distinct integers ( , for all ), the IDs of the cells accessible from cell .
-
It is guaranteed, that no cell contains both resources, iron
ore and coal. At the beginning of the game you own only the
cell with ID
Output
Output the minimum number of settlers needed to claim at least one cell with coal and at least one cell with iron ore. Output “impossible” if it is impossible to own both, coal and iron ore.
Sample Input 1 | Sample Output 1 |
---|---|
3 1 1 2 3 1 2 2 3 1 1 1 |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
3 1 1 2 3 1 2 1 1 2 1 2 |
impossible |