Hide

Problem B
Arboriculture

In preparation for the Swedish Coding Cup Finals, the organizing committee is decorating the hall for the award ceremony with beautiful juniper trees. They have designed an arrangement of $N$ trees, each with a specific look. As the resident arborist of the competition, it’s your job to fix the trees.

You ordered $M$ trees, and the shipment arrived a minute ago. It may be the case that you can’t pick $N$ trees of the exact right look out of these trees. In this case, you must cut off some branches on some trees in order to transform their looks into those required in the tree arrangement. There’s a slight problem – the contest just started, so you need to fix those trees up right now before the award ceremony!

Formally, a tree consists of a root, from which a number of branches (possibly none!) extend. Each branch ends at a point called a vertex, from which any number of new branches can extend. Two trees look the same if they have the same structure of branches and vertices. Note that the order in which a set of branches grows from a vertex does not matter.

To change the layout of a tree, you can use your trusty lopper to cut off branches that grow from a vertex, one branch at a time. Branches can be cut from any part of the tree: cutting a branch makes the whole subtree below it fall off. Since you’re low on time, you’d prefer to do this as fast as possible. If you choose and cut $N$ of the trees optimally, how many cuts do you need to make in total?

Input

The first line contains two integers: $N$ – the number of trees in the arrangement ($1 \le N \le 500$), and $M$ – the number of trees you have ordered ($N \le M \le 500$).

Then $N + M$ descriptions of the trees follow – first the $N$ trees in the arrangement, followed by the $M$ trees you had ordered. A tree description starts with an integer $0 \le B$ – the number of branches of the tree. The next line contains $B$ integers, $a_1$, $a_2$, ..., $a_ B$, where $a_ i < i$. Each integer $a_ i$ means that there is a branch between vertex $a_ i$ and vertex $i$. If a branch grows from the root, this number is $0$.

There are at most $1000$ branches in total among the $N + M$ trees. It is guaranteed that it’s possible to transform the trees in the described manner.

Output

Output a single integer – the minimal number of edges you must cut to transform the layout of $N$ of the ordered trees into those of the trees in the arrangement.

Scoring

Your solution will be tested on a set of test groups, each worth a number of points. To get the points for a test group you need to solve all test cases in the test group. Your final score will be the maximum score of a single submission.

Group

Points

Constraints

1

10

Each vertex (including the root) has either $0$ or $1$ branches growing from it.

2

25

$N = M = 1$, and each vertex (including the root) has either $0$, $1$ or $2$ branches growing from it.

3

25

No additional constraints.

Explanation of Samples

In the first sample, we ordered three trees and need to construct two trees. The second of the ordered trees exactly matches the first tree in the arrangement, so we can choose it without performing any cuts. The third of the ordered trees is similar to the second tree in the arrangement, except it has an extra branch from the root. Thus, we only need to perform a single cut to transform the tree.

Sample Input 1 Sample Output 1
2 3
3 0 0 0
4 0 1 2 0
2 0 1
3 0 0 0
5 0 0 1 0 3
1
Sample Input 2 Sample Output 2
5 5
1 0
3 0 1 2
4 0 1 2 3
3 0 1 2
5 0 1 2 3 4
2 0 1
3 0 1 2
5 0 1 2 3 4
4 0 1 2 3
5 0 1 2 3 4
2
Sample Input 3 Sample Output 3
1 1
2 0 0
4 0 0 1 1
2

Please log in to submit a solution to this problem

Log in