标签:style blog http color io os 2014 div sp
/* 题意: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; }
标签:style blog http color io os 2014 div sp
原文地址:http://www.cnblogs.com/hujunzheng/p/3975735.html