CF1343E.Weights Distributing

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an undirected unweighted graph consisting of nn vertices and mm edges (which represents the map of Bertown) and the array of prices pp of length mm . It is guaranteed that there is a path between each pair of vertices (districts).

Mike has planned a trip from the vertex (district) aa to the vertex (district) bb and then from the vertex (district) bb to the vertex (district) cc . 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 pp 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 tt independent test cases.

输入格式

The first line of the input contains one integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. Then tt test cases follow.

The first line of the test case contains five integers n,m,a,bn, m, a, b and cc ( 2n21052 \le n \le 2 \cdot 10^5 , n1mmin(n(n1)2,2105)n-1 \le m \le min(\frac{n(n-1)}{2}, 2 \cdot 10^5) , 1a,b,cn1 \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 mm integers p1,p2,,pmp_1, p_2, \dots, p_m ( 1pi1091 \le p_i \le 10^9 ), where pip_i is the ii -th price from the array.

The following mm lines of the test case denote edges: edge ii is represented by a pair of integers viv_i , uiu_i ( 1vi,uin1 \le v_i, u_i \le n , uiviu_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 ( vi,uiv_i, u_i ) there are no other pairs ( vi,uiv_i, u_i ) or ( ui,viu_i, v_i ) in the array of edges, and for each pair (vi,ui)(v_i, u_i) the condition viuiv_i \ne u_i is satisfied. It is guaranteed that the given graph is connected.

It is guaranteed that the sum of nn (as well as the sum of mm ) does not exceed 21052 \cdot 10^5 ( n2105\sum n \le 2 \cdot 10^5 , m2105\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:

One of the possible solution to the second test case of the example:

首页