P4674 [BalticOI 2016] Bosses (day1)

Description

A company of $n$ employees is due for a restructuring. In the resulting hierarchy,represented as a rooted tree, every node will be the boss of its children. Each employee has a list of bosses they will accept. In addition, all employees mustbe assigned a salary. The salary must be a positive integer, and the salary of eachboss must be larger than the sum of salaries of their immediate subordinates. Your task is to structure the company so that all above conditions hold, and the sumof all the salaries is as small as possible.

Input Format

The first input line contains an integer $n$ : the number of employees. The employees are numbered $1,2,...,n$ .After this, the input contains $n$ lines that describe the preferences of the employees.The $i$th such line contains an integer $k_i$ , followed by a list of $k_i$ integers. The list consists of all employees that the $i$th employee accepts as their boss.

Output Format

You should output the lowest total salary among all valid restructurings. You can assume that at least one solution exists.

Explanation/Hint

### Subtask 1 (22 points) - $2\leq n \leq 10$ - $\sum^n_{i=1}k_i\leq 20$ ### Subtask 2 (45 points) - $2\leq n \leq 100$ - $\sum^n_{i=1}k_i\leq 200$ ### Subtask 3 (33 points) - $2\leq n \leq 5000$ - $\sum^n_{i=1}k_i\leq 10000$