CF1111E.Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a tree with nn nodes and qq queries.

Every query starts with three integers kk , mm and rr , followed by kk nodes of the tree a1,a2,,aka_1, a_2, \ldots, a_k . To answer a query, assume that the tree is rooted at rr . We want to divide the kk given nodes into at most mm groups such that the following conditions are met:

  • Each node should be in exactly one group and each group should have at least one node.
  • In any group, there should be no two distinct nodes such that one node is an ancestor (direct or indirect) of the other.

You need to output the number of ways modulo 109+710^{9}+7 for every query.

输入格式

The first line contains two integers nn and qq ( 1n,q1051 \le n, q \le 10^{5} ) — the number of vertices in the tree and the number of queries, respectively.

Each of the next n1n-1 lines contains two integers uu and vv ( 1u,vn,uv1 \le u, v \le n, u \ne v ), denoting an edge connecting vertex uu and vertex vv . It is guaranteed that the given graph is a tree.

Each of the next qq lines starts with three integers kk , mm and rr ( 1k,rn1 \le k, r \le n , 1mmin(300,k)1 \le m \le min(300,k) ) — the number of nodes, the maximum number of groups and the root of the tree for the current query, respectively. They are followed by kk distinct integers a1,a2,,aka_1, a_2, \ldots, a_k ( 1ain1 \le a_i \le n ), denoting the nodes of the current query.

It is guaranteed that the sum of kk over all queries does not exceed 10510^{5} .

输出格式

Print qq lines, where the ii -th line contains the answer to the ii -th query.

输入输出样例

  • 输入#1

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

    输出#1

    2
    0
    
  • 输入#2

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

    输出#2

    1
    1
    
  • 输入#3

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

    输出#3

    2
    1
    

说明/提示

Consider the first example.

In the first query, we have to divide the three given nodes ( 77 , 44 and 33 ), into the maximum of three groups assuming that the tree is rooted at 22 . When the tree is rooted at 22 , 44 is an ancestor of both 33 and 77 . So we can't put all the nodes into one group. There is only 11 way to divide the given nodes into two groups, which are [4][4] and [3,7][3, 7] . Also, there is only one way to divide the given nodes into three groups, which are [7][7] , [4][4] and [3][3] . So, there are total 22 ways to divide the given nodes into a maximum of three groups.

In the second query, when the tree is rooted at 44 , 66 is an ancestor of 22 and 22 is an ancestor of 11 . So, we can't put all the given nodes into one group.

首页