博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2234
阅读量:5171 次
发布时间:2019-06-13

本文共 1423 字,大约阅读时间需要 4 分钟。

Matches Game
     

Description

Here is a simple game. In this game, there are several piles of matches and two players. The two player play in turn. In each turn, one can choose a pile and take away arbitrary number of matches from the pile (Of course the number of matches, which is taken away, cannot be zero and cannot be larger than the number of matches in the chosen pile). If after a player’s turn, there is no match left, the player is the winner. Suppose that the two players are all very clear. Your job is to tell whether the player who plays first can win the game or not.

Input

The input consists of several lines, and in each line there is a test case. At the beginning of a line, there is an integer M (1 <= M <=20), which is the number of piles. Then comes M positive integers, which are not larger than 10000000. These M integers represent the number of matches in each pile.

Output

For each test case, output "Yes" in a single line, if the player who play first will win, otherwise output "No".

Sample Input

2 45 453 3 6 9

Sample Output

NoYes
#include
#include
int main(int argc, char const *argv[]){ int M; int i; int a,b; while(~scanf("%d",&M)) { a=0; for(i=0;i
这道题主要就是博弈的问题,火柴堆得开始数量就决定了输赢(每一步都走的最好的一步),任何一个整数都可以分解为二进制数,这样就可以把一堆火柴分解为若干个
二进制位的子堆,如果每一种大小的子堆数目都是偶数则这是个平衡的游戏,否则是非平衡的。游戏人I在非平衡的游戏中可以获胜,游戏人II可以在平衡的游戏中获胜。

转载于:https://www.cnblogs.com/kuroko-ghh/p/9363355.html

你可能感兴趣的文章
javascript时间戳转换成yyyy-MM-DD格式
查看>>
2059 mysql
查看>>
service XXX does not support chkconfig
查看>>
RXJAVA之Subject
查看>>
TC2.0图形函数详解
查看>>
Interview Preparation III
查看>>
数据结构学习---有序链表的合并
查看>>
js 的基础知识变量
查看>>
使用X-shell管理员root连接ubuntu17.10服务器拒绝密码的一个失误!
查看>>
js中eval详解
查看>>
使用IronPython集成Python和.NET
查看>>
扩展ScriptBundle,支持混淆加密javascript
查看>>
WCF自寄宿
查看>>
数据库系统异常排查之思路
查看>>
FastReport使用一——简介
查看>>
ODbgscript 1.82.x Document
查看>>
C++ malloc new 的区别
查看>>
js放大镜的案例
查看>>
jquery的jsonp
查看>>
Java基础知识回顾
查看>>