题库练习 Maximum Distance
← 上一题 下一题 →

A12205 | Maximum Distance

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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: $x_1, x_2, \ldots, x_k$ .

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 \leq k \leq n \leq 10^5$ , $n-1 \leq m \leq 10^5$ ) — the number of vertices, the number of edges and the number of special vertices.

The second line contains $k$ distinct integers $x_1, x_2, \ldots, x_k$ ( $1 \leq x_i \leq n$ ).

Each of the following $m$ lines contains three integers $u$ , $v$ and $w$ ( $1 \leq u,v \leq n, 1 \leq w \leq 10^9$ ), 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 $x_i$ 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 
C++ 编辑器
输入
输出