1353. Byteasar the Travelling Salesman

单点时限: 2.0 sec

内存限制: 256 MB

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.

Task

Write a program which:

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

2.computes the total time of Byteasar’s trip,

3.writes the result.

输入格式

In the first line there is one integer n equal to the number of towns in Byteotia, 1<=n<=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<=a, b<=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<=m<=5 000. I the following m lines there are numbers of successive towns on Byteasar’s route - one number per line.

输出格式

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

样例

Input
5
1 2
1 5
3 5
4 5
4
1
3
2
5
Output
7

1 人解决,2 人已尝试。

1 份提交通过,共有 4 份提交。

9.8 EMB 奖励。

创建: 16 年,8 月前.

修改: 6 年,7 月前.

最后提交: 11 年,7 月前.

来源: POI

题目标签