2020.11.1补题

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
4
11
27
27
11
Output
YES
11 27
Input
2
6
6
Output
NO
Input
6
10
20
30
20
10
20
Output
NO
Input
6
1
1
2
2
3
3
Output
NO

题意:

一共有n张牌,是否可以分成两份数量相同的牌,每一份牌都是一样的大小。

思路:

开始一直纠结怎么判断牌的内容是否一样,只有两种,所以需要有一个计数。

代码:

#include<bits/stdc++.h>
using namespace std;
int a[102];
int b[102];
int main()
{  
   int n;
   cin>>n;
   int k=0;
   for(int i=1;i<=n;i++)
   {
       int q;
       scanf("%d",&q);
       if(!b[q]){b[q]++;k++;a[k]=q;}
       else {b[q]++;}
   }
   if(k!=2)printf("NO\n");
   else {
   if(b[a[1]]==b[a[2]])printf("YES\n%d %d",a[1],a[2]);
    else printf("NO\n");
   }
   return 0;

}

 

posted @ 2020-11-01 23:53  xiaoxu778  阅读(95)  评论(0)    收藏  举报