Codeforces Round #696 (Div. 2) C. Array Destruction

题目连接:https://codeforc.es/contest/1474/problem/C

You found a useless array a of 2n positive integers. You have realized that you actually don’t need this array, so you decided to throw out all elements of a.

It could have been an easy task, but it turned out that you should follow some rules:

In the beginning, you select any positive integer x.
Then you do the following operation n times:
select two elements of array with sum equals x;
remove them from a and replace x with maximum of that two numbers.
For example, if initially a=[3,5,1,2], you can select x=6. Then you can select the second and the third elements of a with sum 5+1=6 and throw them out. After this operation, x equals 5 and there are two elements in array: 3 and 2. You can throw them out on the next operation.

Note, that you choose x before the start and can’t change it as you want between the operations.

Determine how should you behave to throw out all elements of a.

Input
The first line contains a single integer t (1≤t≤1000) — the number of test cases.

The first line of each test case contains the single integer n (1≤n≤1000).

The second line of each test case contains 2n integers a1,a2,…,a2n (1≤ai≤106) — the initial array a.

It is guaranteed that the total sum of n over all test cases doesn’t exceed 1000.

Output
For each test case in the first line print YES if it is possible to throw out all elements of the array and NO otherwise.

If it is possible to throw out all elements, print the initial value of x you’ve chosen. Print description of n operations next. For each operation, print the pair of integers you remove.

Example

input

4
2
3 5 1 2
3
1 1 8 8 64 64
2
1 1 2 4
5
1 2 3 4 5 6 7 14 3 11

output

YES
6
1 5
2 3
NO
NO
YES
21
14 7
3 11
5 6
2 4
3 1

分析

由题目可知,如果数列符合要求,数列中最大的元素肯定是可以由数列中其中两个元素相加构成的,所以第一步操作肯定是数列中最大的一个数和另一个元素构成,我们可以枚举另一个元素。可以推出,在剩余的元素中,肯定是由其中最大的那个构成的已经选出来的最大的元素,我们可以用反正法证出:
如果不是剩余元素中的最大元素构成选出的最大元素,那么剩余元素中的最大元素加上任意一个其他元素所构成的元素肯定是大于他本身的,那么他就不是剩余元素中的最大的一个了,出现矛盾。

代码
#include<bits/stdc++.h>
using namespace std;
const int maxx = 2010;
int a[maxx];
int ans1[maxx],ans2[maxx];
int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        int n;
        scanf("%d",&n);
        n+=n;
        for(int i=1;i<=n;i++)
            scanf("%d",&a[i]);
        sort(a+1,a+1+n);
        int flag=0;
        int tot=0;
        for(int pp=1;pp<n;pp++)
        {
            tot=0;
            int m=a[n];
            ans1[++tot]=m;
            ans2[tot]=a[pp];
            flag=0;
            multiset<int>v;
            for(int i=1;i<n;i++)
                if(i!=pp)v.insert(a[i]);
            multiset<int>::iterator it1,it2;
            while(!v.empty())
            {
                it1 = v.end();
                it1--;
                int t = *it1;
                v.erase(it1);
                it2 = v.find(m-t);
                if(it2!=v.end())
                {
                    ans1[++tot]=t;
                    ans2[tot]=m-t;
                    v.erase(it2);
                    m=t;
                }
                else
                {
                    flag=1;
                    break;
                }
            }
            if(flag==0)break;
        }
        if(flag==1)printf("NO\n");
        else
        {
            printf("YES\n");
            printf("%d\n",ans1[1]+ans2[1]);
            for(int i=1;i<=tot;i++)
                printf("%d %d\n",ans1[i],ans2[i]);
        }
    }
}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值