码迷,mamicode.com
首页 > 其他好文 > 详细

2014 网选 5011 Game(Nim游戏,数学题)

时间:2014-09-16 21:46:11      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   2014   div   sp   

bubuko.com,布布扣

/*
    题意:Nim游戏! 
    思路:通过异或,判断将n个数表示成二进制的形式之后,是否对应位的数字1 的个数是偶数! 
*/ 
#include<iostream>
using namespace std;

int main(){
    int n, x, s;
    while(cin>>n){
        s=0;
        while(n--){
            cin>>x;
            s^=x;
        }
        if(s) cout<<"Win";//不是偶数 
        else cout<<"Lose";//是偶数 
        cout<<endl;
    }
    return 0;
} 

 

2014 网选 5011 Game(Nim游戏,数学题)

标签:style   blog   http   color   io   os   2014   div   sp   

原文地址:http://www.cnblogs.com/hujunzheng/p/3975735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!