Byteasar the Travelling Salesman


Submit solution

Points: 100 (partial)
Time limit: 1.0s
Memory limit: 128M

Author:
Problem type
Allowed languages
Ada, BrainF***, C, C#, C++, Dart, Go, Java, JS, Kotlin, Lua, Pascal, Prolog, Python, Swift, VB

A salesman Byteasar works hard travelling over Byteotia. In past times travelling salesmen could choose on their own towns they wanted to visit and order to do so, but those times are now gone forever. From the time the Central Controlling Office for Travelling Salesmen was established every salesman gets from the Office a list of towns to visit and the order of his tour. As it usually happens with central offices, the imposed order of visiting towns has not much in common with an optimal order. Before leaving for his tour Byteasar would like to know at least how much time it will take him to visit all the towns. It is your task to compute this.

The towns of Byteotia are numbered from 1 to n. The capital of Byteotia has the number 1, and this is the place Byteasar starts on his journey from. The towns are connected by a network of two-way roads. A trip between two towns directly connected by a road always takes 1 unit of time. From the capital one can reach any other Byteotian town. However, the road network had been designed very thriftily, so the roads never form cycles.

Write a program which:

  • reads the description of the road network in Byteotia and the list of towns that Byteasar has to visit,

  • computes the total time of Byteasar's trip,

-writes the result to the output.

Input

In the first line there is one integer n equal to the number of towns in Byteotia, 1 \leq n \leq 30 000. In the following n-1 lines the network of roads is described. In each of these lines there are two integers a and b (1 \leq a, b \leq n; a<>b), meaning that the towns a and b are connected by a road. In the line n+1 there is one integer m equal to the number of towns Byteasar should visit, 1 \leq m \leq 5000. In the following m lines there are numbers of successive towns on Byteasar's route - one number per line.

Output

In the first and only line there should be one integer equal to the total time of Byteasar's trip.

Input Sample

5
1 2
1 5
3 5
4 5
4
1
3
2
5

Output Sample

7

Comments

There are no comments at the moment.