当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3057:Core

题目描述
Suppose T=<V,E,W> is an acyclic, connected, undirected graph(or we can call it unrooted tree), each edge has a positive weigh, we call this graph Tree Network. (V is the vertex set, E is edge set, and W is weigh set).

In the Tree Network, each pair of vertex u, v has a simple path, then the distance from u to v, written as d(u,v), is the length of a u,v-path.

Another definition is d(V,x), d(V,x)=min{d(v,x)|v∈V}.

Suppose any connected subgraph of T is T'=(V',E',W'), We called ECC(T',T)=max{d(V',u)|u∈(V-V')} is the eccentricity of T'.

Now is your turn, give you a Tree Network T and a non-negative integer S, you must find a connected subgraph of T —— T', which satisfy the sum all of the edges weigh in T' is not bigger than S and the eccentricity of T' is the least than other subgraph of T. We called the T' “Core of Tree Network”

Notice: Sometimes, T' only contains one vertex, and you may find there are many cores. But we only want to know the minimal eccentricity of T', and that is determinately.
输入解释
Input includes multiple cases.

First line is the number of case x.

For each case:

The first line includes two integer numbers. N (1<=N<=10000) and S(1<=S<=108).

The other n-1 lines describe the edges in T.

Each line contains three positive integer numbers u,v,w(1<=u,v,w<=10000), describe the head, the endpoints and the weigh of an edge.
输出解释
Only one integer s, the minimal eccentricity of T'.
输入样例
2
8 6
1 3 2
2 3 2
3 4 6
4 5 3
4 6 4
4 7 2
7 8 3
5 9
1 2 5
2 3 2
2 4 4
2 5 3 
输出样例
5
3 
来自杭电HDUOJ的附加信息
Recommend gaojie

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-3057

最后修改于 2020-10-25T22:59:38+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 65535/65535K(Java/Others)