zoukankan      html  css  js  c++  java
  • A. Fair Game

    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
    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
    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.

    题意就是给你偶数个数,两个人分,每个人要分的一样多,而且选的数要一样.

     1 #include <iostream>
     2 #include <cstring>
     3 #include <cstdio>
     4 #include <algorithm>
     5 #include <set>
     6 #define N 105
     7 using namespace std;
     8 int k[N];
     9 set<int>s;
    10 int main(){
    11   int n,x,y;
    12   cin>>n;
    13   bool prime=true;
    14   for(int i=0;i<n;i++){
    15     cin>>k[i];
    16     s.insert(k[i]);
    17   }
    18   if(s.size()==2){
    19     set<int>::iterator it=s.begin();
    20     x=*it;
    21     it++;
    22     y=*it;
    23     int ans=0;
    24     for(int i=0;i<n;i++){
    25       if(k[i]==x)
    26         ans++;
    27     }
    28     if(ans!=n/2)
    29       prime=false;
    30   }else{
    31     prime=false;
    32   }
    33   if(prime){
    34     cout<<"YES"<<endl;
    35     cout<<x<<" "<<y<<endl;
    36   }else{
    37     cout<<"NO"<<endl;
    38   }
    39   return 0;
    40 }
  • 相关阅读:
    visual studio 2010的安装
    安装操作系统的过程图解
    教育法学第八章单元测试MOOC
    教育法学第七章单元测试MOOC
    教育法学第六章单元测试MOOC
    教育法学第四章单元测试MOOC
    教育法学第三章单元测试MOOC
    教育法学第一章单元测试MOOC
    教育法学-第二章单元测验mooc
    单元测验4:人格知识大比武2mooc
  • 原文地址:https://www.cnblogs.com/zllwxm123/p/7596952.html
Copyright © 2011-2022 走看看