Codeforces Round #659 (Div. 2) D GameGame

Posted acmllf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #659 (Div. 2) D GameGame相关的知识,希望对你有一定的参考价值。

技术图片

 

技术图片

 

 

题意:

给一个数组 两个人轮流从里面取数,取了的数不能再取

每个人有一个value 

取了数之后要和value异或一下

最终value大的那个人 赢

 

题解:

每次取最高位的那个看即可,若最高位数量是偶数,无论怎么取,两个人这一位都一样

所以取数量是奇数次的最高位

然后分情况手玩一下

 

#include <bits/stdc++.h>

using namespace std;
const int maxn=1e5+10;
int a[maxn];
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        int n;
        cin>>n;
        int x=0;

        for(int i=1;i<=n;i++)
        {
            cin>>a[i];
            x^=a[i];
        }
        int ans=0;
        if(x==0)
            {cout<<"DRAW"<<endl;continue;}
        while(x!=1)
        {

            x/=2;
            ans++;
        }

        int sum=0;
        for(int i=1;i<=n;i++)
        {
            if((a[i]>>ans)&1)
                sum++;
        }
        if((sum-1)/2%2==0)
            cout<<"WIN"<<endl;
        else if(n%2==0)
            cout<<"WIN"<<endl;
            else cout<<"LOSE"<<endl;

    }

}

 

以上是关于Codeforces Round #659 (Div. 2) D GameGame的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #659 (Div. 2)

Codeforces Round #659 (Div. 1) 题解 (AB)

Codeforces Round #659 (Div. 2) A.Common Prefixes

Codeforces Round #659 (Div. 2) D GameGame

Codeforces Round #659 (Div. 2) B1. Koa and the Beach (Easy Version)

Codeforces Round #436 E. Fire(背包dp+输出路径)