码迷,mamicode.com
首页 > 其他好文 > 详细

51nod 1070 Bash游戏 V4

时间:2017-08-23 14:51:45      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:clear   bash   div   name   long   can   斐波那契数   space   nod   

这种博弈题  都是打表找规律 可我连怎么打表都不会 

这个是凑任务的吧....以后等脑子好些了 再琢磨吧

 

就是斐波那契数列中的数 是必败态

 

#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

标签:clear   bash   div   name   long   can   斐波那契数   space   nod   

原文地址:http://www.cnblogs.com/Draymonder/p/7417719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!