博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2975 Nim
阅读量:6140 次
发布时间:2019-06-21

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

Nim博弈题:这个题是要你求如果先手能赢,有几种策略;

View Code
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long using namespace std; int main( ) { int n,num[1024]; while( scanf( "%d",&n ),n ) { int s = 0; for( int i = 0 ; i < n ;i ++ ) { scanf( "%d",&num[i] ); s ^= num[i]; } int ans = 0; if( s != 0 ) for( int i = 0 ; i < n ; i ++ ) { if( num[i] > (s^num[i]) ) ans++; } printf( "%d\n",ans ); } //system( "pause" ); return 0; }

转载于:https://www.cnblogs.com/bo-tao/archive/2012/09/26/2704617.html

你可能感兴趣的文章
某大型网站迁移总结(完结)
查看>>
mysql的innodb中事务日志(redo log)ib_logfile
查看>>
部署SSL证书后,网页内容造成页面错误提示的处理办法
查看>>
MS SQLSERVER通用存储过程分页
查看>>
60.使用Azure AI 自定义视觉服务实现物品识别Demo
查看>>
Oracle 冷备份
查看>>
jq漂亮实用的select,select选中后,显示对应内容
查看>>
C 函数sscanf()的用法
查看>>
python模块之hashlib: md5和sha算法
查看>>
解决ros建***能登录不能访问内网远程桌面的问题
查看>>
pfsense锁住自己
查看>>
vsftpd 相关总结
查看>>
bash complete -C command
查看>>
解决zabbix 3.0中1151端口不能运行问题
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
dubbo
查看>>
【Git入门之四】操作项目
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>