SRM 624 D2L3: GameOfSegments, 博弈论,Sprague–Grundy theorem,Nimber

题目:http://community.topcoder.com/stat?c=problem_statement&pm=13204&rd=15857


这道题目需要用到博弈论中的经典理论,Sprague–Grundy theorem,下面将相关理论做一个总结:

Impartial Game:公平游戏,双方除了谁先开始游戏外,其余都相同。

Nim:一类经典的Impartial Game,很多游戏都可以等价于Nim。

Nimber(Grundy numbers):可以理解为标识一个游戏状态的数。在游戏进行过程种,每个状态都应一个唯一的Nimber。

Sprague-Grundy定理对一个 Impartial Game 的状态,其等效游戏的 Nimber 数,就等于所有其后继状态 Nimber 数的 Mex 函数值。

Mex:对一个集合S,若G为S的补集,则 Mex{S} = min {G}。


根据 Sprague-Grundy定理,要求当前游戏状态的Nimber数,则需要求出其所有后继状态的Nimbers,然后对这些Nimbers取Mex值。而且当存在多个“子Impartial Game”同时进行时,这一定理尤其有用,对每个“子游戏”状态的Nimber数进行异或操作,就是该状态的Nimber数。


代码如下:

#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <iostream>
#include <sstream>
#include <iomanip>

#include <bitset>
#include <string>
#include <vector>
#include <stack>
#include <deque>
#include <queue>
#include <set>
#include <map>

#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <cstring>
#include <ctime>
#include <climits>
using namespace std;

#define CHECKTIME() printf("%.2lf\n", (double)clock() / CLOCKS_PER_SEC)
typedef pair<int, int> pii;
typedef long long llong;
typedef pair<llong, llong> pll;
#define mkp make_pair
#define FOREACH(it, X) for(__typeof((X).begin()) it = (X).begin(); it != (X).end(); ++it)

/*************** Program Begin **********************/

class GameOfSegments {
public:
    int winner(int N) {
	    int Nimbers[1001];
	    Nimbers[0] = Nimbers[1] = 0;
	    for (int i = 2; i <= N; i++) {
		    set <int> options;
		    for (int j = 0; j <= i - 2; j++) {
		    	options.insert(Nimbers[j] ^ Nimbers[i - j - 2]);
		    }
		    int r = 0;
		    while (options.count(r)) {
		    	++r;
		    }
		    Nimbers[i] = r;
	    }
	    return (Nimbers[N] > 0 ? 1 : 2);
    }

};

/************** Program End ************************/


参考:

http://www.cnblogs.com/fishball/archive/2013/01/19/2866311.html

http://www.cnblogs.com/hsqdboke/archive/2012/04/20/2459796.html

http://www.cnblogs.com/hsqdboke/archive/2012/04/21/2461034.html



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值