51nod 1070 Bash游戏 V4
Posted Draymonder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51nod 1070 Bash游戏 V4相关的知识,希望对你有一定的参考价值。
这种博弈题 都是打表找规律 可我连怎么打表都不会
这个是凑任务的吧....以后等脑子好些了 再琢磨吧
就是斐波那契数列中的数 是必败态
#include<bits/stdc++.h> using namespace std; map<long long ,int> mp; void init() { mp.clear(); long long a=1,b=1; while (a < 1e9+1000) { mp[a]++; a = a+b; b = a-b; } } int main() { init(); int t; scanf("%d",&t); while (t--) { int n; scanf("%d",&n); if(mp[n]) puts("B"); else puts("A"); } }
以上是关于51nod 1070 Bash游戏 V4的主要内容,如果未能解决你的问题,请参考以下文章