POJ 2068 NIM (博弈DP)

转载请注明出处,谢谢http://blog.csdn.net/ACM_cxlove?viewmode=contents by---cxlove

题目:有两个队,每个队有n个人,每个人每次有数量限制,取最后一块的输,问获胜策略。

http://poj.org/problem?id=2068

其实差不多,dp[i][j]表示第i个人取,还有j块石头 。

当j为0的时候,没有石头,这时候是胜,为1。

后继中有必败态的为必胜态。

#include
#include
#include
#include
#include
#include
#include
#define C    240
#define TIME 10
#define inf 1<<25
#define LL long long
using namespace std;
int dp[20][8200],n,s,a[20];
int slove(int idx,int remain){
    if(dp[idx][remain]!=-1)
        return dp[idx][remain];
    if(remain==0)
        return dp[idx][remain]=1;
    dp[idx][remain]=0;
    for(int i=1;i<=a[idx]&&i<=remain;i++)
        if(!slove((idx+1)%(2*n),remain-i))
            dp[idx][remain]=1;
    return dp[idx][remain];
}
int main(){
    while(scanf("%d",&n)!=EOF&&n){
        scanf("%d",&s);
        for(int i=0;i<2*n;i++)
            scanf("%d",&a[i]);
        memset(dp,-1,sizeof(dp));
        printf("%d\n",slove(0,s));
    }
    return 0;
}



你可能感兴趣的:(POJ 2068 NIM (博弈DP))