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

HDU 1907、2907 【博弈、anti-NIM】

时间:2016-04-09 12:10:45      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

NIM游戏 和 anti-NIM游戏:

NIM游戏,是取走最后一个石子者

而anti-NIM游戏,是取走最后一个石子者

 

游戏通用准则:

  1. 若一个局面为必胜态,则总存在一种操作方式将当前状态转化为必败态

  2. 若一个局面为必败态,则所有操作都只能转化为必胜态

NIM游戏的解法:

  将当前局面的所有堆的石子数进行异或(也称为:NIM sum),

  1)若NIM sum=0,则当前局面为必败态

  2)若NIM sum≠0,则当前局面为必胜态

技术分享

 

技术分享

 

技术分享

 

#include <cstdio>
#include <iostream>

using namespace std;


int main ()
{
    int T, n, x, game;
    bool allOne;
    scanf("%d", &T);
    while(T--) {
        scanf("%d", &n);
        game = 0;
        allOne = true;
        for(int i=0; i<n; i++) {
            scanf("%d", &x);
            if(x!=1)    allOne = false;
            game ^= x;
        }
        if(allOne && !game || !allOne && game) {
            printf("%s\n", "John");
        } else {
            printf("%s\n", "Brother");
        }
    }
    
    return 0;
}

 

HDU 1907、2907 【博弈、anti-NIM】

标签:

原文地址:http://www.cnblogs.com/AcIsFun/p/5371243.html

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