HDU 2177 取(2堆)石子游戏 Wythoff Game 求第一步方案

题目大意:

就是Wythoff Game, 但是判断胜负之后还要输出方案


大致思路:

首先了解到Wythoff Game的性质:

可以参考 HDU1527

对于每一种方案讨论下一步可能走到的P点位置就行了, 细节问题看代码注释吧, 写的很详细了


代码如下:

Result  :  Accepted     Memory  :  1580 KB     Time  :  0 ms

/*
 * Author: Gatevin
 * Created Time:  2015/5/8 15:53:15
 * File Name: Rin_Tohsaka.cpp
 */
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
const double eps(1e-8);
typedef long long lint;
#define foreach(e, x) for(__typeof(x.begin()) e = x.begin(); e != x.end(); ++e)
#define SHOW_MEMORY(x) cout< a + k)
                printf("%d %d", a, a + k);
        //a = B[k]
        k = floor(a*gold2*gold2);
        if(floor((k + 1)*gold1*gold1) == a) k++;
        if(floor(k*gold1*gold1) == a)//a = B[k]
            printf("%d %d\n", a - k, a);
        
        //拿a的那堆一定要有b = B[k];
        if(a != b)//防止相同的结果出现两次
        {
            k = floor(b*gold2*gold2);
            if(floor((k + 1)*gold1*gold1) == b) k++;
            if(floor(k*gold1*gold1) == b && b - k < a)
                printf("%d %d\n", a - (b - k), b);
        }
        
    }
    return 0;
}


你可能感兴趣的:(ACM_Game_Theory,HDU)