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

POJ 2068 Nim 组合游戏

时间:2014-11-21 12:49:10      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:poj   组合游戏   记忆话搜索   dp   

题目大意:有一堆石子,两伙人,围在一起坐,坐的顺序是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;
}


POJ 2068 Nim 组合游戏

标签:poj   组合游戏   记忆话搜索   dp   

原文地址:http://blog.csdn.net/jiangyuze831/article/details/41345459

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