#P7464. [2017年杭电多校]RXD, tree and sequence
[2017年杭电多校]RXD, tree and sequence
RXD, tree and sequence
Problem Description
RXD has a rooted tree with size , the root ID is , with the depth of RXD has a permutation with size . RXD wants to divide the permutaion into continuous parts For each part, he would calculate the depth of the least common ancestor of the part. And finally accumulate them. He wants to make the final result minimized. Please calculate the minimal answer. $1\leq k\leq n\leq 3\times 10^5, n\times k\leq 3\times 10^5$
Input
There are several test cases, please keep reading until EOF. For each test case, the first line consists of 2 integer , which means the number of the tree nodes and the size of the permutaion, and means the number of parts. The next line consists of different integers, which means the permutation . The next lines consists of 2 integers, , means a tree edge. It is guaranteed that the edges would form a tree. There are 6 test cases.
Output
For each test case, output an integer, which means the answer.
Sample Input
6 3
4 6 2 5 1 3
1 2
2 3
3 4
4 5
4 6
Sample Output
6
Source
2017 Multi-University Training Contest - Team 3