Codeforces Round #436 (Div. 2), problem: (A) Fair Game Solution In C/C++

#include<cstdio>
#include<iostream>
using namespace std;

int n,cnt,ans,A,B;
int buck[500];

int main(){
scanf(“%d”,&n);

for(int i = 1;i <= n;i++){
cin >> cnt;
if(!buck[cnt]){
ans++;
if(A) B = cnt;
else A = cnt;
}
buck[cnt]++;
}

if(ans == 2 && buck[A] == buck[B]) printf(“YES\n%d %d”,A,B);
else printf(“NO”);

return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *