码迷,mamicode.com
首页 > Windows程序 > 详细

HDU 2509 Be the Winner(取火柴博弈2)

时间:2016-03-02 00:19:41      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

传送门

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;

int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        int a,res=0;
        int c=0,g=0;
        for(int i=0;i<n;i++)
        {
            scanf("%d",&a);
            if(a>=2) c++;
            else if(a==1) g++;
            res^=a;
        }
        if(!res)
        {
            if(c>=2)//T2
                printf("No\n");
            else if(c==0)
                printf("Yes\n");
        }
        else//S
        {
            if(g&1&&c==0)//S0
                printf("No\n");
            else if(c==1||c>=2)//S1,S2
                printf("Yes\n");
        }
    }
    return 0;
}

HDU 2509 Be the Winner(取火柴博弈2)

标签:

原文地址:http://www.cnblogs.com/atmacmer/p/5233291.html

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