博弈
HDACMer
I am from Soochow University
展开
-
POJ 2311 博弈
#include #include #include using namespace std; int sg[205][205]; int solve(int w,int h){ if(sg[w][h]!=-1){ return sg[w][h]; } set my_set; for(int i=2;w-i>=2;i++)原创 2013-09-07 20:02:00 · 821 阅读 · 0 评论 -
HDU 1536 求解SG函数
#include #include #include #include using namespace std; const int K=101; const int H=10001; int s[K],sg[H]; int k,m,h,n; bool vis[K]; //用set求SG的时候就会TLE。。。。好无语,改用vis就46ms/64ms.....原创 2013-09-07 18:54:27 · 651 阅读 · 0 评论 -
Hdu 1729 Nim博弈
点击打开题目链接 之前没做过这题,因为学弟要我原创 2014-04-25 22:14:11 · 579 阅读 · 0 评论 -
Hdu 1730 Nim博弈
点击打开题目链接原创 2014-04-25 22:25:17 · 667 阅读 · 0 评论