#Lutece3358. Guard the Kingdom

Guard the Kingdom

Description

Kanade becomes the king of the Kingdom Whatever. There're nn cities in the kingdom, which are connected by n1n-1 biconnected roads. In other words, the cities and roads construct a tree structure. There're kk important cities that need to be protected by arms. It is known that each troop protects all important cities that are closest to it, and only them. If there are multiple important cities with the minimum distance, all of them are protected. The distance between a city and a troop is equal to the number of roads on the unique path between the city and the city containing the troop. Additionally, the troop can be placed in an important city. Of course, the troop protects only that important city in that case.

There're mm troops that are placed in some cities now. In order to make the plan of kingdom defense for next year, Kanade would like to know how many important cities that each troop protects, and how many troops protect each important city.

Input

The first line contains three integers n,m,k (2n2105,1m,kn)n,m,k\ (2\le n\le 2\cdot 10^5,1\le m,k\le n), indicating the number of cities, the number of troops, and the number of important cities, respectively. Cities are numbered from 11 to nn.

The second line contains n1n-1 integers p2,p3,,pn (1pin,pii)p_2,p_3,\ldots,p_n\ (1\le p_i\le n,p_i\neq i). The ii-th integer indicates there is a biconnected road between city i+1i+1 and pi+1p_{i+1}.

The third line contains mm integers ti (1tin)t_i\ (1\le t_i\le n). The ii-th integer indicates the ii-th troop is placed in city tit_i. It is guaranteed that for all 1i,jn1\le i,j\le n and iji\neq j, titjt_i\neq t_j meets.

The fourth line contains kk integers ci (1cin)c_i\ (1\le c_i\le n). The ii-th integer indicates cic_i is an important city. It is guaranteed that for all 1i,jn1\le i,j\le n and iji\neq j, cicjc_i\neq c_j meets.

Output

Output two lines. The first line contains mm integers. The ii-th integer indicates the number of important cities protected by the troop tit_i. The second line contains kk integers. The ii-th integer indicates the number of troops protecting the important city cic_i.

Samples

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

Note

City 55 is protected by troop 2,32,3, and City 66 is only protected by troop 33.

Resources

The 21st UESTC Programming Contest Preliminary