CF1711B.Party
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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,…,n . If member i is not invited, the party will gain an unhappiness value of ai .
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≤t≤104 ). The description of the test cases follows.
The first line of each test case contains two integers n and m ( 1≤n≤105 , 0≤m≤min(105,2n(n−1)) ) — the number of club members and pairs of friends.
The second line of each test case contains n integers a1,a2,…,an ( 0≤ai≤104 ) — the unhappiness value array.
Each of the next m lines contains two integers x and y ( 1≤x,y≤n , x=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 105 .
输出格式
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.