CF613D.Kingdom and its Cities

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Meanwhile, the kingdom of K is getting ready for the marriage of the King's daughter. However, in order not to lose face in front of the relatives, the King should first finish reforms in his kingdom. As the King can not wait for his daughter's marriage, reforms must be finished as soon as possible.

The kingdom currently consists of nn cities. Cities are connected by n1n-1 bidirectional road, such that one can get from any city to any other city. As the King had to save a lot, there is only one path between any two cities.

What is the point of the reform? The key ministries of the state should be relocated to distinct cities (we call such cities important). However, due to the fact that there is a high risk of an attack by barbarians it must be done carefully. The King has made several plans, each of which is described by a set of important cities, and now wonders what is the best plan.

Barbarians can capture some of the cities that are not important (the important ones will have enough protection for sure), after that the captured city becomes impassable. In particular, an interesting feature of the plan is the minimum number of cities that the barbarians need to capture in order to make all the important cities isolated, that is, from all important cities it would be impossible to reach any other important city.

Help the King to calculate this characteristic for each of his plan.

输入格式

The first line of the input contains integer nn ( 1<=n<=1000001<=n<=100000 ) — the number of cities in the kingdom.

Each of the next n1n-1 lines contains two distinct integers uiu_{i} , viv_{i} ( 1<=ui,vi<=n1<=u_{i},v_{i}<=n ) — the indices of the cities connected by the ii -th road. It is guaranteed that you can get from any city to any other one moving only along the existing roads.

The next line contains a single integer qq ( 1<=q<=1000001<=q<=100000 ) — the number of King's plans.

Each of the next qq lines looks as follows: first goes number kik_{i} — the number of important cities in the King's plan, ( 1<=ki<=n1<=k_{i}<=n ), then follow exactly kik_{i} space-separated pairwise distinct numbers from 1 to nn — the numbers of important cities in this plan.

The sum of all kik_{i} 's does't exceed 100000100000 .

输出格式

For each plan print a single integer — the minimum number of cities that the barbarians need to capture, or print 1-1 if all the barbarians' attempts to isolate important cities will not be effective.

输入输出样例

  • 输入#1

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

    输出#1

    1
    -1
    1
    -1
    
  • 输入#2

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

    输出#2

    2
    

说明/提示

In the first sample, in the first and the third King's plan barbarians can capture the city 3, and that will be enough. In the second and the fourth plans all their attempts will not be effective.

In the second sample the cities to capture are 3 and 5.

首页