首页 > 其他 > 详细

BZOJ 1022 小约翰的游戏

时间:2016-03-05 00:11:37      阅读:291      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!