首页 > 代码库 > uva 1566 - John(Nim)
uva 1566 - John(Nim)
题目链接:uva 1566 - John
题目大意:反Nim游戏,除了取到最后一个石子的为输,其他规则和Nim游戏相同。
解题思路:特判全为1的情况,负责答案就是Nim和。
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn = 50;
int main () {
int cas;
scanf("%d", &cas);
while (cas--) {
int ret = 0, n, x;
scanf("%d", &n);
bool flag = false;
for (int i = 0; i < n; i++) {
scanf("%d", &x);
ret ^= x;
if (x > 1)
flag = true;
}
if (flag)
printf("%s\n", ret ? "John" : "Brother");
else
printf("%s\n", n&1 ? "Brother" : "John");
}
return 0;
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。