#P4674. [BalticOI 2016] Bosses (day1)
[BalticOI 2016] Bosses (day1)
题目描述
A company of 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.
输入格式
The first input line contains an integer : the number of employees. The employees are numbered
.After this, the input contains lines that describe the preferences of the employees.The th such line contains an integer , followed by a list of integers. The list consists of all employees that the th employee accepts as their boss.
输出格式
You should output the lowest total salary among all valid restructurings. You can assume that at least one solution exists.
4
1 4
3 1 3 4
2 1 2
1 3
8