codeforces 864A 之 Fair Game

来源:互联网 发布:上证综合指数季度数据 编辑:程序博客网 时间:2024/04/27 08:08
A. Fair Game
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Petya and Vasya decided to play a game. They have n cards (n is an even number). A single integer is written on each card.

Before the game Petya will choose an integer and after that Vasya will choose another integer (different from the number that Petya chose). During the game each player takes all the cards with number he chose. For example, if Petya chose number 5 before the game he will take all cards on which 5 is written and if Vasya chose number 10 before the game he will take all cards on which 10 is written.

The game is considered fair if Petya and Vasya can take all n cards, and the number of cards each player gets is the same.

Determine whether Petya and Vasya can choose integer numbers before the game so that the game is fair.

Input

The first line contains a single integer n (2 ≤ n ≤ 100) — number of cards. It is guaranteed that n is an even number.

The following n lines contain a sequence of integers a1, a2, ..., an (one integer per line, 1 ≤ ai ≤ 100) — numbers written on the n cards.

Output

If it is impossible for Petya and Vasya to choose numbers in such a way that the game will be fair, print "NO" (without quotes) in the first line. In this case you should not print anything more.

In the other case print "YES" (without quotes) in the first line. In the second line print two distinct integers — number that Petya should choose and the number that Vasya should choose to make the game fair. If there are several solutions, print any of them.

Examples
input
411272711
output
YES11 27
input
266
output
NO
input
6102030201020
output
NO
input
6112233
output
NO
Note

In the first example the game will be fair if, for example, Petya chooses number 11, and Vasya chooses number 27. Then the will take all cards — Petya will take cards 1 and 4, and Vasya will take cards 2 and 3. Thus, each of them will take exactly two cards.

In the second example fair game is impossible because the numbers written on the cards are equal, but the numbers that Petya and Vasya should choose should be distinct.

In the third example it is impossible to take all cards. Petya and Vasya can take at most five cards — for example, Petya can choose number 10 and Vasya can choose number 20. But for the game to be fair it is necessary to take 6 cards.

题意:给你偶数个卡片,每个卡片有一个编号,两个人每个人选一个序号,选了这儿序号意味着,这个人要拿走所有该序号的卡片,如果所有的卡片都被拿走,并且两个人的卡片数量一样多,输出YES 和 两个序号  否则输出NO

AC代码如下:

#include <iostream>#include "cstdio"#include "map"#include "cstring"using namespace std;const int maxn = 100+10;int a[maxn];map<int,int>  mp;int main(){    int n;    while(cin>>n)    {        mp.clear();        memset(a,0,sizeof(a));        for(int i=0;i<n;i++)            cin>>a[i];        int flag=0;        for(int i=0;i<n;i++)        {            if(a[i]!=a[0]) flag=a[i];            mp[a[i]]++;        }        if(mp.size()==2 && mp[a[0]]==n/2)        {            cout<<"YES"<<endl;            cout<<a[0]<<" "<<flag<<endl;        }        else        {            cout<<"NO"<<endl;        }    }    return 0;}


原创粉丝点击