CF1401D.Maximum Distributed Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a tree that consists of nn nodes. You should label each of its n1n-1 edges with an integer in such way that satisfies the following conditions:

  • each integer must be greater than 00 ;
  • the product of all n1n-1 numbers should be equal to kk ;
  • the number of 11 -s among all n1n-1 integers must be minimum possible.

Let's define f(u,v)f(u,v) as the sum of the numbers on the simple path from node uu to node vv . Also, let i=1n1j=i+1nf(i,j)\sum\limits_{i=1}^{n-1} \sum\limits_{j=i+1}^n f(i,j) be a distribution index of the tree.

Find the maximum possible distribution index you can get. Since answer can be too large, print it modulo 109+710^9 + 7 .

In this problem, since the number kk can be large, the result of the prime factorization of kk is given instead.

输入格式

The first line contains one integer tt ( 1t1001 \le t \le 100 ) — the number of test cases.

The first line of each test case contains a single integer nn ( 2n1052 \le n \le 10^5 ) — the number of nodes in the tree.

Each of the next n1n-1 lines describes an edge: the ii -th line contains two integers uiu_i and viv_i ( 1ui,vin1 \le u_i, v_i \le n ; uiviu_i \ne v_i ) — indices of vertices connected by the ii -th edge.

Next line contains a single integer mm ( 1m61041 \le m \le 6 \cdot 10^4 ) — the number of prime factors of kk .

Next line contains mm prime numbers p1,p2,,pmp_1, p_2, \ldots, p_m ( 2pi<61042 \le p_i < 6 \cdot 10^4 ) such that k=p1p2pmk = p_1 \cdot p_2 \cdot \ldots \cdot p_m .

It is guaranteed that the sum of nn over all test cases doesn't exceed 10510^5 , the sum of mm over all test cases doesn't exceed 61046 \cdot 10^4 , and the given edges for each test cases form a tree.

输出格式

Print the maximum distribution index you can get. Since answer can be too large, print it modulo 109+710^9+7 .

输入输出样例

  • 输入#1

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

    输出#1

    17
    18
    286

说明/提示

In the first test case, one of the optimal ways is on the following image:

In this case, f(1,2)=1f(1,2)=1 , f(1,3)=3f(1,3)=3 , f(1,4)=5f(1,4)=5 , f(2,3)=2f(2,3)=2 , f(2,4)=4f(2,4)=4 , f(3,4)=2f(3,4)=2 , so the sum of these 66 numbers is 1717 .

In the second test case, one of the optimal ways is on the following image:

In this case, f(1,2)=3f(1,2)=3 , f(1,3)=1f(1,3)=1 , f(1,4)=4f(1,4)=4 , f(2,3)=2f(2,3)=2 , f(2,4)=5f(2,4)=5 , f(3,4)=3f(3,4)=3 , so the sum of these 66 numbers is 1818 .

首页