标签:string play pair class from ever other min determine
2 3 3 5 1 1 1Sample Output
John Brother
代码:
///1.如果所有堆都为1(即c为0) 且为偶数堆(即flag为0)后手拿最后一个 比如 1 1 1 1 ///2.如果c不为零,存在d大于1 ,如果这样的d只有一个 (flag肯定不为0) 比如 1 1 4 先手拿3个造成对方必败 1 1 1 4 先手拿4个 对方必败 ///3.如果这样的d不只一个 先手拿一次将flag变为0即可 且总还存在某堆石子数大于1(如果不存在就必败了)。转换成二进制来看就是拿走flag个 剩下的每个位的1都是偶数个 是必败态 #include <iostream> #include <cstdio> #include <cmath> #include <cstring> #include <algorithm> #define Max 1001 #define PI 3.1415927 using namespace std; int main() { int t,n,d; cin>>t; while(t --) { int flag = 0,c = 0; cin>>n; while(n --) { cin>>d; flag ^= d; if(d > 1)c ++; } if(!flag&&!c || flag&&c)cout<<"John"<<endl; else cout<<"Brother"<<endl; } }
标签:string play pair class from ever other min determine
原文地址:http://www.cnblogs.com/8023spz/p/7966762.html