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

hdu 5011 (nim博弈模版)

时间:2014-09-15 21:24:20      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:io   os   for   sp   c   amp   r   as   hdu   

//nim博弈
//有n堆石头,两人轮流每次从一堆中拿至少1,之多全部的石头,没有石头可拿为lose
//判断先手是win还是lose
# include <stdio.h>
# include <algorithm>
# include <string.h>
using namespace std;
int main()
{
    int n,i;
    __int64 a,sum;
    while(~scanf("%d",&n))
    {
        sum=0;
        for(i=0; i<n; i++)
        {
            scanf("%I64d",&a);
            sum^=a;
        }
        if(sum==0)
            printf("Lose\n");
        else
            printf("Win\n");
    }
    return 0;
}

hdu 5011 (nim博弈模版)

标签:io   os   for   sp   c   amp   r   as   hdu   

原文地址:http://blog.csdn.net/lp_opai/article/details/39297105

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