POJ 2068 Nim 组合游戏

题目大意:有一堆石子,两伙人,围在一起坐,坐的顺序是ABABABAB。。。。每一个人最多能取a[i]个石子,取走最后一个石子的就输了。问谁能赢。


思路:朴素的组合游戏判定问题,这个题给了数据范围,可以进行记忆化搜索。f[i][j]为还剩下i个石子,到了第j个人的时候的状态,然后记忆化一下。


CODE:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define MAX 10010
using namespace std;

int cnt,total,src[30];
int f[MAX][30];

bool Judge(int last,int pos)
{
	if(f[last][pos] != -1)	return f[last][pos];
	if(!last)	return true;
	int next = (pos + 1 > cnt * 2) ? 1:pos + 1;
	for(int i = 1; i <= src[pos] && last - i >= 0; ++i)
		if(!Judge(last - i,next))
			return f[last][pos] = 1;
	return f[last][pos] = 0;
}

int main()
{
	while(scanf("%d",&cnt) && cnt) {
		scanf("%d",&total);
		memset(f,-1,sizeof(f));
		for(int i = 1; i <= (cnt << 1); ++i)
			scanf("%d",&src[i]);
		printf("%d\n",Judge(total,1) ? 1:0);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值