Information

Deadline Keine Frist
Abgabenlimit No limitation

Einloggen

Techniques - Problem: Iron and Coal

This problem I from the NWERC 2017.


Iron and Coal

There are many excellent strategy board games, and your favourite among them is called “Steel Age”. It offers many different paths to victory but you prefer the blood-and-fire-strategy: build as many soldiers as possible and club your opposition into submission. To be able to build soldiers you need two resources: iron ore and coal.

The board consists of different cells numbered from 1 to n which can contain resources. The rules for moving from one cell to another are rather complicated: if you can move from cell A to cell B, it does not always mean that you can also move from B to A. For example, if two cells are connected by a river, then you may be able to move downstream, but not upstream, so long as you didn’t invent a steam engine; however, it still could be possible to reach the upstream cell by using roads and taking a detour over other cells.

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

  • One line with three integers \(n\), the number of cells on the playing field, \(m\), the number of cells containing iron ore, and \(k\), the number of cells containing coal.
  • One line with m distinct integers \(o_1 , \ldots , o_m\), where \(o_1 , \ldots , o_m\) are the IDs of cells with iron ore.
  • One line with k distinct integers \(c_1 , \ldots , c_k\), where \(c_1, \ldots ,c_k\) are the IDs of cells with coal.
  • \(n\) lines describing the topology of the board. The \(j\)-th line of this block specifies the accessible neighbours of the \(j\)-th cell and consists of the following integers: One integer \(a\), the number of cells accessible from cell \(j\) followed by \(a\) distinct integers \(b_1, \ldots, b_a\), the IDs of the cells accessible from cell \(j\).

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 1.

Constraints

  • \(2 \leq n \leq 10^5\)
  • \(1 \leq m < n\)
  • \(1 \leq k < n\)
  • \(1 \leq o_i \leq n\)
  • \(1 \leq c_i \leq n\)
  • \(0 \leq a \leq 10\)
  • \(1 \leq b_i \leq n, b_i \neq j\)

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 Test Cases

Sample input 1

Sample output 1

Sample input 2

Sample output 2


Max file size: 1.0 MiB
Allowed extensions: .java, .cpp, .py