码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 1022 小约翰的游戏

时间:2016-03-05 00:12:17      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

反尼姆游戏。

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int t,n,num[55],ans=0;
void work()
{
scanf("%d",&n);
int cnt=0;ans=0;
for (int i=1;i<=n;i++)
{
scanf("%d",&num[i]);
if (num[i]==1) cnt++;
ans=ans^num[i];
}
if (cnt==n)
{
if (n%2==1) printf("Brother\n");
else printf("John\n");
}
else
{
if (ans==0) printf("Brother\n");
else printf("John\n");
}
}
int main()
{
scanf("%d",&t);
for (int i=1;i<=t;i++)
work();
return 0;
}

BZOJ 1022 小约翰的游戏

标签:

原文地址:http://www.cnblogs.com/ziliuziliu/p/5243627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!