A12993 | Fridge Lockers
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Hanh lives in a shared apartment. There are $n$ people (including Hanh) living there, each has a private fridge.
$n$ fridges are secured by several steel chains. Each steel chain connects two different fridges and is protected by a digital lock. The owner of a fridge knows passcodes of all chains connected to it. A fridge can be open only if all chains connected to it are unlocked. For example, if a fridge has no chains connected to it at all, then any of $n$ people can open it.
For exampe, in the picture there are $n=4$ people and $5$ chains. The first person knows passcodes of two chains: $1-4$ and $1-2$ . The fridge $1$ can be open by its owner (the person $1$ ), also two people $2$ and $4$ (acting together) can open it.The weights of these fridges are $a_1, a_2, \ldots, a_n$ . To make a steel chain connecting fridges $u$ and $v$ , you have to pay $a_u + a_v$ dollars. Note that the landlord allows you to create multiple chains connecting the same pair of fridges.
Hanh's apartment landlord asks you to create exactly $m$ steel chains so that all fridges are private. A fridge is private if and only if, among $n$ people living in the apartment, only the owner can open it (i.e. no other person acting alone can do it). In other words, the fridge $i$ is not private if there exists the person $j$ ( $i \ne j$ ) that the person $j$ can open the fridge $i$ .
For example, in the picture all the fridges are private. On the other hand, if there are $n=2$ fridges and only one chain (which connects them) then both fridges are not private (both fridges can be open not only by its owner but also by another person).
Of course, the landlord wants to minimize the total cost of all steel chains to fulfill his request. Determine whether there exists any way to make exactly $m$ chains, and if yes, output any solution that minimizes the total cost.
$n$ fridges are secured by several steel chains. Each steel chain connects two different fridges and is protected by a digital lock. The owner of a fridge knows passcodes of all chains connected to it. A fridge can be open only if all chains connected to it are unlocked. For example, if a fridge has no chains connected to it at all, then any of $n$ people can open it.
For exampe, in the picture there are $n=4$ people and $5$ chains. The first person knows passcodes of two chains: $1-4$ and $1-2$ . The fridge $1$ can be open by its owner (the person $1$ ), also two people $2$ and $4$ (acting together) can open it.The weights of these fridges are $a_1, a_2, \ldots, a_n$ . To make a steel chain connecting fridges $u$ and $v$ , you have to pay $a_u + a_v$ dollars. Note that the landlord allows you to create multiple chains connecting the same pair of fridges.
Hanh's apartment landlord asks you to create exactly $m$ steel chains so that all fridges are private. A fridge is private if and only if, among $n$ people living in the apartment, only the owner can open it (i.e. no other person acting alone can do it). In other words, the fridge $i$ is not private if there exists the person $j$ ( $i \ne j$ ) that the person $j$ can open the fridge $i$ .
For example, in the picture all the fridges are private. On the other hand, if there are $n=2$ fridges and only one chain (which connects them) then both fridges are not private (both fridges can be open not only by its owner but also by another person).
Of course, the landlord wants to minimize the total cost of all steel chains to fulfill his request. Determine whether there exists any way to make exactly $m$ chains, and if yes, output any solution that minimizes the total cost.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $T$ ( $1 \le T \le 10$ ). Then the descriptions of the test cases follow.
The first line of each test case contains two integers $n$ , $m$ ( $2 \le n \le 1000$ , $1 \le m \le n$ ) — the number of people living in Hanh's apartment and the number of steel chains that the landlord requires, respectively.
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \le a_i \le 10^4$ ) — weights of all fridges.
The first line of each test case contains two integers $n$ , $m$ ( $2 \le n \le 1000$ , $1 \le m \le n$ ) — the number of people living in Hanh's apartment and the number of steel chains that the landlord requires, respectively.
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \le a_i \le 10^4$ ) — weights of all fridges.
输出格式
For each test case:
- If there is no solution, print a single integer $-1$ .
- Otherwise, print a single integer $c$ — the minimum total cost. The $i$ -th of the next $m$ lines contains two integers $u_i$ and $v_i$ ( $1 \le u_i, v_i \le n$ , $u_i \ne v_i$ ), meaning that the $i$ -th steel chain connects fridges $u_i$ and $v_i$ . An arbitrary number of chains can be between a pair of fridges.
If there are multiple answers, print any.
- If there is no solution, print a single integer $-1$ .
- Otherwise, print a single integer $c$ — the minimum total cost. The $i$ -th of the next $m$ lines contains two integers $u_i$ and $v_i$ ( $1 \le u_i, v_i \le n$ , $u_i \ne v_i$ ), meaning that the $i$ -th steel chain connects fridges $u_i$ and $v_i$ . An arbitrary number of chains can be between a pair of fridges.
If there are multiple answers, print any.
输入输出样例
输入 #1
3 4 4 1 1 1 1 3 1 1 2 3 3 3 1 2 3
输出 #1
8 1 2 4 3 3 2 4 1 -1 12 3 2 1 2 3 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted