CF1081D.Maximum Distance
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Chouti was tired of the tedious homework, so he opened up an old programming problem he created years ago.
You are given a connected undirected graph with n vertices and m weighted edges. There are k special vertices: x1,x2,…,xk .
Let's define the cost of the path as the maximum weight of the edges in it. And the distance between two vertexes as the minimum cost of the paths connecting them.
For each special vertex, find another special vertex which is farthest from it (in terms of the previous paragraph, i.e. the corresponding distance is maximum possible) and output the distance between them.
The original constraints are really small so he thought the problem was boring. Now, he raises the constraints and hopes you can solve it for him.
输入格式
The first line contains three integers n , m and k ( 2≤k≤n≤105 , n−1≤m≤105 ) — the number of vertices, the number of edges and the number of special vertices.
The second line contains k distinct integers x1,x2,…,xk ( 1≤xi≤n ).
Each of the following m lines contains three integers u , v and w ( 1≤u,v≤n,1≤w≤109 ), denoting there is an edge between u and v of weight w . The given graph is undirected, so an edge (u,v) can be used in the both directions.
The graph may have multiple edges and self-loops.
It is guaranteed, that the graph is connected.
输出格式
The first and only line should contain k integers. The i -th integer is the distance between xi and the farthest special vertex from it.
输入输出样例
输入#1
2 3 2 2 1 1 2 3 1 2 2 2 2 1
输出#1
2 2
输入#2
4 5 3 1 2 3 1 2 5 4 2 1 2 3 2 1 4 4 1 3 3
输出#2
3 3 3
说明/提示
In the first example, the distance between vertex 1 and 2 equals to 2 because one can walk through the edge of weight 2 connecting them. So the distance to the farthest node for both 1 and 2 equals to 2 .
In the second example, one can find that distance between 1 and 2 , distance between 1 and 3 are both 3 and the distance between 2 and 3 is 2 .
The graph may have multiple edges between and self-loops, as in the first example.