CF444E.DZY Loves Planting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

DZY loves planting, and he enjoys solving tree problems.

DZY has a weighted tree (connected undirected graph without cycles) containing nn nodes (they are numbered from 11 to nn ). He defines the function g(x,y)g(x,y) (1<=x,y<=n)(1<=x,y<=n) as the longest edge in the shortest path between nodes xx and yy . Specially g(z,z)=0g(z,z)=0 for every zz .

For every integer sequence p1,p2,...,pnp_{1},p_{2},...,p_{n} (1<=pi<=n)(1<=p_{i}<=n) , DZY defines f(p)f(p) as .

DZY wants to find such a sequence pp that f(p)f(p) has maximum possible value. But there is one more restriction: the element jj can appear in pp at most xjx_{j} times.

Please, find the maximum possible f(p)f(p) under the described restrictions.

输入格式

The first line contains an integer n (1<=n<=3000)n (1<=n<=3000) .

Each of the next n1n-1 lines contains three integers ai,bi,ci (1<=ai,bi<=n; 1<=ci<=10000)a_{i},b_{i},c_{i} (1<=a_{i},b_{i}<=n; 1<=c_{i}<=10000) , denoting an edge between aia_{i} and bib_{i} with length cic_{i} . It is guaranteed that these edges form a tree.

Each of the next nn lines describes an element of sequence xx . The jj -th line contains an integer xj (1<=xj<=n)x_{j} (1<=x_{j}<=n) .

输出格式

Print a single integer representing the answer.

输入输出样例

  • 输入#1

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

    输出#1

    2
    
  • 输入#2

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

    输出#2

    3
    

说明/提示

In the first sample, one of the optimal pp is [4,3,2,1][4,3,2,1] .

首页