【bzoj4600】【SDOI2016】【硬币游戏】【博弈论+dp】

题面没有传上来。。。

题解: orz 现场AC神犇:http://blog.csdn.net/fzhvampire/article/details/51463157

代码:

#include
#include
#include
#define N 30010 
using namespace std;
int T,n,mx,sg[20][20],f[N],c,ans;
void pre(){
  int t,x(0),y(0);
  t=n;while (t>=2){x++;t/=2;}
  t=n;while (t>=3){y++;t/=3;}
//  cout<


你可能感兴趣的:(博弈论,dp)