您的位置:首页 > 其它

HDU 2509 Be the Winner

2016-07-10 22:18 344 查看
Problem Description

Let’s consider m apples divided into n groups. Each group contains no more than 100 apples, arranged in a line. You can take any number of consecutive apples at one time.

For example “@@@” can be turned into “@@” or “@” or “@ @”(two piles). two people get apples one after another and the one who takes the last is

the loser. Fra wants to know in which situations he can win by playing strategies (that is, no matter what action the rival takes, fra will win).

【题目分析】

简单的NIM游戏啊(请自行百度(划去)知乎)

【代码】

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
int main(){
int n;
while(~scanf("%d",&n)){
int i,j;
int s=0;bool flag=0;
for(i=1;i<=n;i++){
scanf("%d",&j);
s^=j;
if(j>1)flag=1;
}
if(!flag) if(n%2) printf("No\n");
else printf("Yes\n");
elseif(s==0)printf("No\n");
else printf("Yes\n");
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  hdu