Solve of UVA 12239: Bingo!
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,b,i,j;
while(cin>>n>>b)
{
if(n==0 && b==0) break;
int x[91]={0};
int y[91]={0};
for(i=0;i<b;i++)
{
cin>>j;
x[j]=1;
y[j]=1;
}
for(i=0;i<=n;i++)
{
for(j=0;j<=n;j++)
{
if(i!=j && x[i]==1 && x[j]==1)
{
y[abs(i-j)]=1;
}
}
}
int ch=2;
for(i=0;i<=n;i++)
{
if(y[i]!=1)
{
ch=3;
cout<<'N'<<endl;
break;
}
}
if(ch==2)
cout<<'Y'<<endl;
}
return 0;
}
No comments:
Post a Comment