NOI '22 Multi-Provincial Team Selection P6 - MIS

View as PDF

Submit solution

Points: 40 (partial)
Time limit: 1.0s
Memory limit: 1G

Problem type

Tommy has a binary tree rooted at 1 on n nodes. Each node has an integer weight wi, and the father of node i=2,3,,n is fi. Tommy needs to disassemble this binary tree by sequentially removing edges. When an edge (u,v) is removed, the following happen, simultaneously:

  • wu+wv units of cost are incurred;
  • wu and wv are swapped.

Find the minimum units of cost necessary to disassemble the binary tree.

Constraints

2n5000

1wi109

Test n
1 - 3 10
4 - 7 100
8 - 11 500
12 - 16 1000
17 - 25 5000

Input Specification

The first line contains a positive integer n.

The second line contains n positive integers w1,w2,,wn.

The third line contains n1 positive integers f2,f3,,fn, describing the binary tree.

Output Specification

Output the answer.

Sample Input 1

Copy
3
2 1 3
1 1

Sample Output 1

Copy
7

Attachments


Comments

There are no comments at the moment.