A13409 | Weights Distributing
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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$ ).
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:

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


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

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted