307349: CF1343E. Weights Distributing

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Weights Distributing

题意翻译

给出一个有 $n$ 个点,$m$ 条边的无向图和一个长为 $m$ 的权值序列 $w$。 你可以随意安排边权(每条边权对应 $w$ 中的一个数,不可以重复)。 求 $a$ 到 $b$ 的最短路与 $b$ 到 $c$ 的最短路的和的最小值。

题目描述

You are given an undirected unweighted graph consisting of $ n $ vertices and $ m $ edges (which represents the map of Bertown) and the array of prices $ p $ of length $ m $ . It is guaranteed that there is a path between each pair of vertices (districts). Mike has planned a trip from the vertex (district) $ a $ to the vertex (district) $ b $ and then from the vertex (district) $ b $ to the vertex (district) $ c $ . He can visit the same district twice or more. But there is one issue: authorities of the city want to set a price for using the road so if someone goes along the road then he should pay the price corresponding to this road (he pays each time he goes along the road). The list of prices that will be used $ p $ is ready and they just want to distribute it between all roads in the town in such a way that each price from the array corresponds to exactly one road. You are a good friend of Mike (and suddenly a mayor of Bertown) and want to help him to make his trip as cheap as possible. So, your task is to distribute prices between roads in such a way that if Mike chooses the optimal path then the price of the trip is the minimum possible. Note that you cannot rearrange prices after the start of the trip. You have to answer $ t $ independent test cases.

输入输出格式

输入格式


The first line of the input contains one integer $ t $ ( $ 1 \le t \le 10^4 $ ) — the number of test cases. Then $ t $ test cases follow. The first line of the test case contains five integers $ n, m, a, b $ and $ c $ ( $ 2 \le n \le 2 \cdot 10^5 $ , $ n-1 \le m \le min(\frac{n(n-1)}{2}, 2 \cdot 10^5) $ , $ 1 \le a, b, c \le n $ ) — the number of vertices, the number of edges and districts in Mike's trip. The second line of the test case contains $ m $ integers $ p_1, p_2, \dots, p_m $ ( $ 1 \le p_i \le 10^9 $ ), where $ p_i $ is the $ i $ -th price from the array. The following $ m $ lines of the test case denote edges: edge $ i $ is represented by a pair of integers $ v_i $ , $ u_i $ ( $ 1 \le v_i, u_i \le n $ , $ u_i \ne v_i $ ), which are the indices of vertices connected by the edge. There are no loops or multiple edges in the given graph, i. e. for each pair ( $ v_i, u_i $ ) there are no other pairs ( $ v_i, u_i $ ) or ( $ u_i, v_i $ ) in the array of edges, and for each pair $ (v_i, u_i) $ the condition $ v_i \ne u_i $ is satisfied. It is guaranteed that the given graph is connected. It is guaranteed that the sum of $ n $ (as well as the sum of $ m $ ) does not exceed $ 2 \cdot 10^5 $ ( $ \sum n \le 2 \cdot 10^5 $ , $ \sum m \le 2 \cdot 10^5 $ ).

输出格式


For each test case, print the answer — the minimum possible price of Mike's trip if you distribute prices between edges optimally.

输入输出样例

输入样例 #1

2
4 3 2 3 4
1 2 3
1 2
1 3
1 4
7 9 1 5 7
2 10 4 8 5 6 7 3 3
1 2
1 3
1 4
3 2
3 5
4 2
5 6
1 7
6 7

输出样例 #1

7
12

说明

One of the possible solution to the first test case of the example: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1343E/45349f7bc2743dc38bc22fd8a04a573c0f1fee19.png) One of the possible solution to the second test case of the example: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1343E/dcd34c001e92838b1f52c04f64c0407963f9ec6e.png)

Input

题意翻译

给出一个有 $n$ 个点,$m$ 条边的无向图和一个长为 $m$ 的权值序列 $w$。 你可以随意安排边权(每条边权对应 $w$ 中的一个数,不可以重复)。 求 $a$ 到 $b$ 的最短路与 $b$ 到 $c$ 的最短路的和的最小值。

加入题单

算法标签: