A15171 | Party
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A club plans to hold a party and will invite some of its $n$ members. The $n$ members are identified by the numbers $1, 2, \dots, n$ . If member $i$ is not invited, the party will gain an unhappiness value of $a_i$ .
There are $m$ pairs of friends among the $n$ members. As per tradition, if both people from a friend pair are invited, they will share a cake at the party. The total number of cakes eaten will be equal to the number of pairs of friends such that both members have been invited.
However, the club's oven can only cook two cakes at a time. So, the club demands that the total number of cakes eaten is an even number.
What is the minimum possible total unhappiness value of the party, respecting the constraint that the total number of cakes eaten is even?
There are $m$ pairs of friends among the $n$ members. As per tradition, if both people from a friend pair are invited, they will share a cake at the party. The total number of cakes eaten will be equal to the number of pairs of friends such that both members have been invited.
However, the club's oven can only cook two cakes at a time. So, the club demands that the total number of cakes eaten is an even number.
What is the minimum possible total unhappiness value of the party, respecting the constraint that the total number of cakes eaten is even?
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \leq t \leq 10^4$ ). The description of the test cases follows.
The first line of each test case contains two integers $n$ and $m$ ( $1 \leq n \leq 10^5$ , $0 \leq m \leq \min(10^5,\frac{n(n-1)}{2})$ ) — the number of club members and pairs of friends.
The second line of each test case contains $n$ integers $a_1,a_2, \dots,a_n$ ( $0 \leq a_i \leq 10^4$ ) — the unhappiness value array.
Each of the next $m$ lines contains two integers $x$ and $y$ ( $1 \leq x,y \leq n$ , $x \neq y$ ) indicating that $x$ and $y$ are friends. Each unordered pair $(x,y)$ appears at most once in each test case.
It is guaranteed that both the sum of $n$ and the sum of $m$ over all test cases do not exceed $10^5$ .
The first line of each test case contains two integers $n$ and $m$ ( $1 \leq n \leq 10^5$ , $0 \leq m \leq \min(10^5,\frac{n(n-1)}{2})$ ) — the number of club members and pairs of friends.
The second line of each test case contains $n$ integers $a_1,a_2, \dots,a_n$ ( $0 \leq a_i \leq 10^4$ ) — the unhappiness value array.
Each of the next $m$ lines contains two integers $x$ and $y$ ( $1 \leq x,y \leq n$ , $x \neq y$ ) indicating that $x$ and $y$ are friends. Each unordered pair $(x,y)$ appears at most once in each test case.
It is guaranteed that both the sum of $n$ and the sum of $m$ over all test cases do not exceed $10^5$ .
输出格式
For each test case, print a line containing a single integer – the minimum possible unhappiness value of a valid party.
输入输出样例
输入 #1
4 1 0 1 3 1 2 1 3 1 3 5 5 1 2 3 4 5 1 2 1 3 1 4 1 5 2 3 5 5 1 1 1 1 1 1 2 2 3 3 4 4 5 5 1
输出 #1
0 2 3 2
In the first test case, all members can be invited. So the unhappiness value is $0$ .
In the second test case, the following options are possible:
- invite $1$ and $2$ ( $0$ cakes eaten, unhappiness value equal to $3$ );
- invite $2$ and $3$ ( $0$ cakes eaten, unhappiness value equal to $2$ );
- invite only $1$ ( $0$ cakes eaten, unhappiness value equal to $4$ );
- invite only $2$ ( $0$ cakes eaten, unhappiness value equal to $5$ );
- invite only $3$ ( $0$ cakes eaten, unhappiness value equal to $3$ );
- invite nobody ( $0$ cakes eaten, unhappiness value equal to $6$ ).
The minimum unhappiness value is achieved by inviting $2$ and $3$ .In the third test case, inviting members $3,4,5$ generates a valid party with the minimum possible unhappiness value.
In the second test case, the following options are possible:
- invite $1$ and $2$ ( $0$ cakes eaten, unhappiness value equal to $3$ );
- invite $2$ and $3$ ( $0$ cakes eaten, unhappiness value equal to $2$ );
- invite only $1$ ( $0$ cakes eaten, unhappiness value equal to $4$ );
- invite only $2$ ( $0$ cakes eaten, unhappiness value equal to $5$ );
- invite only $3$ ( $0$ cakes eaten, unhappiness value equal to $3$ );
- invite nobody ( $0$ cakes eaten, unhappiness value equal to $6$ ).
The minimum unhappiness value is achieved by inviting $2$ and $3$ .In the third test case, inviting members $3,4,5$ generates a valid party with the minimum possible unhappiness value.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted