山东省赛-博弈-Game
Posted yxysuanfa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了山东省赛-博弈-Game相关的知识,希望对你有一定的参考价值。
非常明显的一道博弈题目,可是在求SG的时候,子状态写错了,一直都没有AC。最后还是水过去的额。比赛后还是自己写了一遍;
# include <cstdio> # include <cstring> # include <iostream> using namespace std; int sg[1200]; int get(int x) { if(x < 0) return 0; if(sg[x] != -1) return sg[x]; int mex[1200] = {0}; for(int i = 0;i < x;i++){ int t = get(i)^get(x-i - 1)^get(i-1)^get(x - i -2); mex[t] = 1; } for(int i = 0;;i++) if(!mex[i]) return sg[x] = i; } int main() { //freopen("a.txt","r",stdin); //freopen("b.txt","r",stdin); int t; memset(sg,-1,sizeof(sg)); scanf("%d",&t); while(t--){ int n; scanf("%d",&n); if(n <= 2){ printf("zbybr\n"); continue; } if(get(n - 1) || get(n - 2)) printf("blankcqk\n"); else printf("zbybr\n"); } return 0; }
以上是关于山东省赛-博弈-Game的主要内容,如果未能解决你的问题,请参考以下文章
2019山东省赛B - Flipping Game ZOJ - 4114 题解