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

1070 Bash游戏 V4

时间:2017-10-01 10:08:57      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:gray   namespace   inpu   std   测试   ini   images   file   out   

1070 Bash游戏 V4技术分享

有一堆石子共有N个。A B两个人轮流拿,A先拿。每次拿的数量最少1个,最多不超过对手上一次拿的数量的2倍(A第1次拿时要求不能全拿走)。拿到最后1颗石子的人获胜。假设A B都非常聪明,拿石子的过程中不会出现失误。给出N,问最后谁能赢得比赛。
例如N = 3。A只能拿1颗或2颗,所以B可以拿到最后1颗石子。
Input
第1行:一个数T,表示后面用作输入测试的数的数量。(1 <= T <= 1000)
第2 - T + 1行:每行1个数N。(1 <= N <= 10^9)
Output
共T行,如果A获胜输出A,如果B获胜输出B。
Input示例
3
2
3
4
Output示例
B
B
A

从1到10算下可以猜出就是斐波那契数列。
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 #define ll long long
 4 const int N = 1e5+10;
 5 set<ll> st;
 6 void init() {
 7     st.insert(1);
 8     st.insert(2);
 9     int x = 1, y = 2;
10     for(int i = 1; i < N; i ++) {
11         st.insert(x + y);
12         y = y + x;
13         x = y - x;
14     }
15 }
16 int main() {
17     init();
18     int t;
19     ll n;
20     cin >> t;
21     while(t--) {
22         cin >> n;
23         if(st.count(n)) printf("B\n");
24         else printf("A\n");
25     }
26     return 0;
27 }

 

1070 Bash游戏 V4

标签:gray   namespace   inpu   std   测试   ini   images   file   out   

原文地址:http://www.cnblogs.com/xingkongyihao/p/7616565.html

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