#Lutece3358. Guard the Kingdom
Guard the Kingdom
Description
Kanade becomes the king of the Kingdom Whatever. There're cities in the kingdom, which are connected by biconnected roads. In other words, the cities and roads construct a tree structure. There're 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 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 , indicating the number of cities, the number of troops, and the number of important cities, respectively. Cities are numbered from to .
The second line contains integers . The -th integer indicates there is a biconnected road between city and .
The third line contains integers . The -th integer indicates the -th troop is placed in city . It is guaranteed that for all and , meets.
The fourth line contains integers . The -th integer indicates is an important city. It is guaranteed that for all and , meets.
Output
Output two lines. The first line contains integers. The -th integer indicates the number of important cities protected by the troop . The second line contains integers. The -th integer indicates the number of troops protecting the important city .
Samples
6 2 2
1 4 5 1 4
2 3
5 6
1 2
2 1
Note
City is protected by troop , and City is only protected by troop .
Resources
The 21st UESTC Programming Contest Preliminary